摘要: #include<stdio.h> #include<malloc.h> typedef char ElemType; typedef struct BiTNode { ElemType data; struct BiTNode* lchild, * rchild; }BiTNode,*BiTree 阅读全文
posted @ 2020-07-24 21:59 石乐智先生 阅读(299) 评论(0) 推荐(0) 编辑