#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
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...
代码:#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
#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
给出一棵树,有若干次询问,每次询问距两个点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
1 基本操作(1)头文件#include.一定要加上using namespace std;或者使用时std::vectorvec;(2)创建vector对象,vector vec;(可以是结构体类型)2 详细的函数实现功能:其中vector c. c.clear() 移除容器...
分类:
其他好文 时间:
2015-08-11 13:44:14
阅读次数:
164
简单的拓扑排序,按字典序输出。#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
整数:#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