摘要: 1 #include 2 #define ElemType char 3 //节点声明,数据域、左孩子指针、右孩子指针 4 typedef struct BiTNode{ 5 char data; 6 struct BiTNode *lchild,*rchild; 7 }BiTNode,*BiTree; 8 //先序建立二叉树 9 BiTree Crea... 阅读全文
posted @ 2018-06-19 16:10 Rohlf 阅读(208) 评论(0) 推荐(0) 编辑