摘要: 学习二叉树,看了两天也不明白,唉!acm之路让我体验到要付出巨大的努力,废话不多说,看我网上找到的代码:此题题意很明确,给你先序遍历,中序遍历,求后序遍历。但代码就让我找不到东西了。http://acm.hdu.edu.cn/showproblem.php?pid=1710#include #include void build(int n,int *a,int *b,int *c){ int *p=b; if(n#includeint a[1000],b[1000];int flag;typedef struct node{ int data; struct node... 阅读全文