
数据结构
nielaishan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
hdu 2888 二维线段树和二维ST模版
#include <stdio.h> #include <string.h> #include <iostream> #include <algorithm> #include <vector> #include <queue> #include <set> #include <map> #include <string> #include <math.h> #include <stdlib.h>原创 2016-08-10 21:10:49 · 995 阅读 · 0 评论 -
二叉树,前序+中序=>后序
#include<iostream> #include<cstdio> #include<vector> #include<cstring> using namespace std; const int maxn = 1000+10; char p[maxn], m[maxn], b[maxn]; int n;struct node { struct node *l, *r; cha原创 2017-03-09 17:34:11 · 344 阅读 · 0 评论