摘要: 只知道先序序列和后序序列是无法求出唯一的树,所以不做讨论。[cpp]view plaincopy#include<iostream>#include<cstdio>#include<cstring>usingnamespacestd;structBinaryTreeNode{charc;BinaryTreeNode*lchild,*rchild;BinaryTreeNode(){lchild=NULL,rchild=NULL;}};structBinaryTreeNode*root1,*root2;charpreorder[100],inorder[100] 阅读全文
posted @ 2012-08-13 13:21 张兰云 阅读(528) 评论(0) 推荐(0) 编辑