码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
brute-force search
1 #include 2 #include 3 #include 4 5 using namespace std; 6 using namespace pcl; 7 8 int main() 9 {10 pcl::PointCloud::Ptr cloud (new pcl::P...
分类:其他好文   时间:2014-05-07 17:33:59    阅读次数:377
SPListItems操作
1、快速删除SPListItems集合在Sharepoint开发中可能需要一次删除成百上千条记录,这时候如果轮询SPList.Items并直接调用该对象的删除方法来删除的话性能极差,会叫你崩溃。下面介绍一个快速删除大量数据的方法:using (SPWeb myweb = mysite.AllWebs...
分类:其他好文   时间:2014-05-07 10:04:03    阅读次数:291
简单的windows作业管理(自己也没弄透彻)
先把代码贴出来,以后有时间再研究!简单的说,作业就相当于沙箱,可以使程序在一定范围内活动。#include "stdafx.h"#include "windows.h"#include using namespace std;SECURITY_ATTRIBUTES sa;STARTUPINFO si...
分类:Windows程序   时间:2014-05-07 09:31:00    阅读次数:568
排序-归并排序
该算法基于一个简单的操作: 将两个有序的队列合成一个更大的有序队列。归并排序保证NlogN。原地归并的抽象算法(Abstract in-place merge):using System;namespace MergeSort{ class Program { static...
分类:其他好文   时间:2014-05-06 14:34:28    阅读次数:325
unity3d 移动与旋转 2
这次的代码示例是配合动画系统使用的4.3新的动画系统允许动画带有位置偏移,只需要在Animator组件中勾选Apply Root Motion我们就可以使用它了。using UnityEngine;using System.Collections;public class DonePlayerMov...
分类:移动开发   时间:2014-05-06 13:38:54    阅读次数:424
一个奇怪的语法问题
#include #include //#include #include #include //using namespace std;int main(){ double a = (-4.0+sqrt(7.0))/3.0; double b = (-4.0-sqrt(7.0))/3....
分类:其他好文   时间:2014-05-06 13:29:21    阅读次数:325
[渣译文] 使用 MVC 5 的 EF6 Code First 入门 系列:MVC程序中实体框架的Code First迁移和部署
这是微软官方SignalR 2.0教程Getting Started with Entity Framework 6 Code First using MVC 5 系列的翻译,这里是第五篇:MVC程序中实体框架的Code First迁移和部署原文:Code First Migrations and ...
分类:Web程序   时间:2014-05-06 13:16:59    阅读次数:511
分苹果
题目:穷举法:由于3 1 1和1 3 1 是一种分法,所以也就是说在N个篮子里的苹果数目是 n1 2 using namespace std; 3 int count; 4 int foo(int n,int m,int prei,int temp[10]) 5 { 6 int i=0,j=...
分类:移动开发   时间:2014-05-06 13:08:55    阅读次数:489
POJ1474 Video Surveillance(半平面交)
很多道相似的半平面交,但只过了这个,心都碎了。。#pragma warning(disable:4996)#include #include #include #include #include #include #include using namespace std;#define maxn 2...
分类:其他好文   时间:2014-05-06 12:58:01    阅读次数:344
关于C#的Main(String[] args)参数输入问题
关于C#的Main(String[] args)参数输入问题指定相关的测试代码 首先,写一个用于测试的关于Main(String[] args)参数输入有关的代码类,如下:using System;public class Hello{ public static void Main(String[...
分类:其他好文   时间:2014-05-06 09:45:12    阅读次数:280
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!