二叉树 已知 两种遍历序列 求第三种遍历序列
已知 前序和中序遍历 求后序遍历序列 struct node *creat(char *a, char *b, int n) { struct node *ptr; char *p; int count = 0; if (n <= 0) return NULL; ptr = (struct node *)malloc(sizeof(struct n