摘要: #include<stdio.h>#include<stdlib.h>int flag=1;//定义标签,用于show()只显示一次树的根结点typedef struct tree{ int data; struct tree *lchild; struct tree *rchild; }treen 阅读全文
posted @ 2018-10-19 15:51 intoin 阅读(2044) 评论(0) 推荐(0) 编辑