摘要: #include<malloc.h> #include<stdlib.h> #include<stdio.h> #define MAXSIZE 100 typedef struct node { char data; struct node*lc; struct node*rc; }Node, *B 阅读全文
posted @ 2017-04-21 18:56 raye 阅读(2476) 评论(0) 推荐(0) 编辑