摘要: /* 二叉树的基本遍历方法 */ #include <stdio.h> #include <stdlib.h> #define type char #define MAXSIZE 10 typedef struct BiTree { type data; struct BiTree * lchild 阅读全文
posted @ 2020-12-08 21:45 Thoughtful_z 阅读(310) 评论(0) 推荐(0)