码迷,mamicode.com
首页 >  
搜索关键字:bcv std    ( 41629个结果
《Effective C++》内存管理
如果global new-hander没有成功配置,会抛出一个std::bad_alloc的exception。#include#include#includeusing namespace std;templateclass NewHandlerSupport{public: static ...
分类:编程语言   时间:2014-05-10 08:24:08    阅读次数:456
NSString 与 C++ string字符串的互转
1.C++ string 转换为 NSString std::string str("hello"); // NSString *str = [NSString stringWithString:str.c_str()]; NSString *ocstr = [NSStr...
分类:编程语言   时间:2014-05-10 08:14:05    阅读次数:381
杭电oj 1002
1 #include 2 #include 3 using namespace std; 4 int nCases; 5 int m[1001], n[1001]; 6 char a[1001], b[1001]; 7 int main() 8 { 9 scanf("%d", &nCa...
分类:其他好文   时间:2014-05-10 05:14:19    阅读次数:342
poj1988
#includeusing namespace std;const int maxn = 30000+100;int F[maxn], D[maxn], S[maxn];void set(int n){ for(int i =0 ;i >P; char c; int a, b; while(P--)...
分类:其他好文   时间:2014-05-10 02:56:28    阅读次数:313
ACM算法集锦
kurXX最小生成树#include #include #include using namespace std;#define M 501#define LIM 20000000struct edg{ int u,v; int w;}all_e[M*M/2];bool operator > t; ...
分类:其他好文   时间:2014-05-10 00:29:13    阅读次数:470
Cocos2d-x中的字符串
在Cocos2d-x中能够使用的字符串constchar*、std::string和cocos2d::__String等,其中const char*是C风格的字符串,std::string是C++风格的字符串,它封装了const char*。cocos2d::__String才是Cocos2d-x引...
分类:其他好文   时间:2014-05-09 23:58:33    阅读次数:426
HDU 4280 Island Transport 网络流裸题
非递归版好像被卡掉了,其他2个板子都能过。 #include #include #include #include #include using namespace std; #define ll int const int MAXN = 100100;//点数的最大值 const int MAXM = 400010;//边数的最大值 const int INF = 0x3f3f3f3f; st...
分类:其他好文   时间:2014-05-09 22:55:23    阅读次数:476
【HDOJ】2612 Find a way
BFS。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 #define INF 0x3fffffff 8 9 typedef struct node_st {10 int x, y, ...
分类:其他好文   时间:2014-05-09 20:18:48    阅读次数:339
bzoj2744: [HEOI2012]朋友圈
#include#include#include#includeusing namespace std;int nn;#define in(x) scanf("%d",&x)#define in2(x,y) scanf("%d%d",&x,&y)#define in3(x,y,z) scanf("%...
分类:其他好文   时间:2014-05-09 13:24:28    阅读次数:275
循环顺序队列
#include using namespace std; const int MAXQSIZE = 5; //队列类 template struct LinkList { T * data;//指向连续的数据存储区域 int front;//头指针 指向第一个元素 int rear;//尾指针 如果队列不为空指向最后元素的下一个位置 }; //构造一个空队列 template void...
分类:其他好文   时间:2014-05-09 06:07:53    阅读次数:248
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!