摘要: #include <stdio.h> #include <stdlib.h> typedef struct tree{ char data; struct tree *ltree,*rtree; }Tree; Tree * createTree(Tree *T){ char n; T=(Tree * 阅读全文
posted @ 2019-04-17 21:40 罗剑雄 阅读(490) 评论(0) 推荐(0)