- 博客(4)
- 收藏
- 关注
原创 PAT A1079
#include<stdio.h> #include<math.h> #include<vector> using namespace std; const int maxn=100010; struct node{ double data; vector<int>child; }Node[maxn]; int n; doub...
2019-02-28 16:20:28 174
原创 PAT A1102
#include<stdio.h> #include<algorithm> #include<queue> #include<stdlib.h> using namespace std; const int maxn=110; struct node{ int lchild,rchild; }Node[maxn]; bool notRoot...
2019-02-28 16:11:16 135
原创 PAT A1086 Tree Traversals Again
#include<stdio.h> #include<algorithm> #include<string.h> #include<stack> using namespace std; const int maxn=50; struct node{ int data; node*lchild; node*rchild; ...
2019-02-28 10:47:22 109
原创 PAT A1020 Tree Traversals
#include<string.h> #include<stdio.h> #include<queue> #include<algorithm> const int maxn=50; using namespace std; struct node{ int data; node*lchild; node*rchild; }...
2019-02-28 10:30:51 89
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人