摘要: #include #include typedef char M; typedef struct node{ M data; struct node *lchild,*rchild; }BiTNode,*BinTree; void createBinTree_Pre(BiTNode *&T,M pre[],int&n){ M ch=pre[n++]; if(ch==';')... 阅读全文
posted @ 2019-05-28 11:55 源霸霸丿 阅读(304) 评论(0) 推荐(0) 编辑