2017年12月3日
摘要: #include <stdio.h> #include <malloc.h> #define NULL 0 typedef struct MyTree { char data; struct MyTree *lChild; struct MyTree *rChild; }*BeeTree; void 阅读全文
posted @ 2017-12-03 22:05 马勇铎 阅读(86) 评论(0) 推荐(0)