摘要: ``` #include #include struct BinTree//节点 { char ch; struct BinTree *left, *right; }; typedef struct BinTree *Node; //建立节点指针类型 char pre[150]; int i; Node Creat()//按照先序遍历创建 { Node T; ... 阅读全文
posted @ 2019-03-18 17:27 Probie_Tao 阅读(174) 评论(0) 推荐(0) 编辑