接着昨天的写,里面的代码包含昨天的 1 #include 2 using namespace
std; 3 #define N 50 4 5 //初始化数组 6 int a[] = {6, 2, 3, 4, 4, 3, 1, 2, 4, 4}; 7
//int a[] = {10,...
分类:
其他好文 时间:
2014-05-09 17:38:03
阅读次数:
379
#include using namespace std;void BubbleSort(int*
a,int n){ for(size_t i=0;i a[j+1]){ int tmp = a[j]; a[j] = a[j+1]; ...
分类:
其他好文 时间:
2014-05-08 21:59:19
阅读次数:
264
环境:vs2012 win7 c++1 #include2
写一个比较函数,体现对象间是按照哪些key值来排序的。3 使用std::sort函数。例子如下:#include
/*排序规律:星级最大的排前面,其次等级越大排前面,再其次是经验越大排前面,最后是其次是ID值越大排越后面。*/bool my...
分类:
其他好文 时间:
2014-05-08 19:54:37
阅读次数:
226
题意:求最长子序列#include#includeusing namespace std;int
max(int x,int y){ if(x>y) return x; return y;}int map[1001][1001];char
s1[1001],s2[1001];int main(){ ...
分类:
其他好文 时间:
2014-05-07 20:07:29
阅读次数:
202
数塔问题#include#includeusing namespace std;int
a[100009][12];int maxi(int a,int b,int c){ int max1; max1=a>b?a:b;
max1=max1>c?max1:c; return ...
分类:
其他好文 时间:
2014-05-07 19:25:00
阅读次数:
302
#include using namespace std;class A{public:
int a;public: A& operator++(){ cout<<"A&
operator++()"<<endl; a=a+1; return *this; } A operator++(int){ c...
分类:
其他好文 时间:
2014-05-07 18:37:55
阅读次数:
208
---恢复内容开始---Example 1Creating and terminating
thread by usingpthread_create, pthread_exit(status)#include #include #include
using namespace std;#defin...
分类:
编程语言 时间:
2014-05-07 17:41:05
阅读次数:
335
这题明明是一个简单的类似约瑟夫环的问题,但是由于细节问题迟迟不能得到正确结果,结果比赛完几分钟才改对。。耻辱。代码:#include #include
#include #include #include #define ll long longusing namespace std;#define...
分类:
其他好文 时间:
2014-05-07 17:35:47
阅读次数:
290
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
先把代码贴出来,以后有时间再研究!简单的说,作业就相当于沙箱,可以使程序在一定范围内活动。#include "stdafx.h"#include
"windows.h"#include using namespace std;SECURITY_ATTRIBUTES sa;STARTUPINFO si...