码迷,mamicode.com
首页 >  
搜索关键字:include    ( 84546个结果
数据结构:define实现链表
#include typedef int af[]; typedef struct Node { struct Node *next; int data; Node(int d = int()) :next(NULL), data(d){} }Node; Node* first = NULL; #define LIST(ar,n) { ...
分类:其他好文   时间:2015-08-11 14:16:57    阅读次数:139
迷宫探索
/* 5 4 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 1 4 3 */ #include using namespace std; struct node {  int x;//横坐标  int y;//纵坐标  int f;//父亲在队列中的编号  int s;//步数 }; int main() {  nod...
分类:其他好文   时间:2015-08-11 14:12:35    阅读次数:125
maya2105 - windows8 - numpy/scipy
To compile numpy, create a site.cfg file in numpy's source directory with the following or similar content: [mkl] include_dirs = C:/Program Files (x86...
分类:Windows程序   时间:2015-08-11 14:09:58    阅读次数:251
hdu 1251 统计难题(给定字典单词,查询以某单词为前缀的单词的个数)
代码:#include #include #include using namespace std; struct Node { int cnt; Node * next[26]; void init() { cnt=0; for(int i=0; i<26; i++) { next[i]=N...
分类:其他好文   时间:2015-08-11 14:09:48    阅读次数:122
How to initialize a static const map in c++?
#include using namespace std;struct A{ static map create_map() { map m; m[1] = 2; m[3] = 4; m[5] =...
分类:编程语言   时间:2015-08-11 14:04:07    阅读次数:116
CodeForces 519E 树形DP A and B and Lecture Rooms
给出一棵树,有若干次询问,每次询问距两个点u, v距离相等的点的个数。情况还挺多的,少侠不妨去看官方题解。^_^ 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 ...
分类:其他好文   时间:2015-08-11 14:01:10    阅读次数:107
更新一下缺省源
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #define PAU putchar(' ') 9 #define ENT putchar('\n')10 using namespace....
分类:其他好文   时间:2015-08-11 13:57:41    阅读次数:108
vector的常用总结
1 基本操作(1)头文件#include.一定要加上using namespace std;或者使用时std::vectorvec;(2)创建vector对象,vector vec;(可以是结构体类型)2 详细的函数实现功能:其中vector c. c.clear() 移除容器...
分类:其他好文   时间:2015-08-11 13:44:14    阅读次数:164
HDU 1285 确定比赛名次
简单的拓扑排序,按字典序输出。#include#include#include#include#include#includeusing namespace std;int n,m,u,v;const int maxn=1111;//设置节点数量int InDegree[maxn];//入度int ...
分类:其他好文   时间:2015-08-11 13:39:24    阅读次数:106
大数模板(my)
整数:#include#include#include#includeusing namespace std;#define MAXN 9999//万进制#define DLEN 4//4位class BigNum{private: int a[500];//可以控制大数位数(500*4) ...
分类:其他好文   时间:2015-08-11 13:38:06    阅读次数:166
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!