摘要: #include<stdio.h> #include<stdlib.h> //树的定义 typedef char DataType; typedef struct Node { DataType data; struct Node *lchild; struct Node *rchild; } Bi 阅读全文
posted @ 2020-06-10 11:47 lin1235 阅读(95) 评论(0) 推荐(0)