随笔分类 -  tree

摘要:一道纯数学题,但是老师把这到题归为tree不知道是为什么#include #include #include #define N 0.1using namespace std;int main(){ int n,m; while(~scanf("%d%d",&n,&m)&& (n!=0 ... 阅读全文
posted @ 2014-11-01 00:31 Scale_the_heights 阅读(169) 评论(0) 推荐(0)
摘要:已知前序中序求后序#include #include #include #include using namespace std;string po;void Computing(string pre,string in){ int len=pre.length(); if(len>0)... 阅读全文
posted @ 2014-10-29 19:33 Scale_the_heights 阅读(139) 评论(0) 推荐(0)