摘要: 1 #include"stdio.h" 2 #include"stdlib.h" 3 #define maxsize 100 4 //二叉树链表类型定义 5 typedef struct node{ 6 char data; 7 struct node *lchild;//左指针 8 struct node *rchild;//右指针 ... 阅读全文
posted @ 2018-12-01 22:47 筱菜鸟 阅读(186) 评论(0) 推荐(0) 编辑