摘要: 1 #include "stdio.h" 2 #include "stdlib.h" 3 4 #define MAXSIZE 100 5 typedef char TElemType; 6 typedef struct BiTNode { 7 TElemType data; 8 struct BiTNode *lchild; 9 st... 阅读全文
posted @ 2017-12-10 18:16 ixummer 阅读(273) 评论(0) 推荐(0) 编辑