摘要: #include <stdio.h> #include <stdlib.h> #define Maxsize 100 typedef char ElemType; //二叉树的链式存储结构 typedef struct BitNode { ElemType data; struct BitNode 阅读全文
posted @ 2021-04-15 22:19 nanfengnan 阅读(109) 评论(0) 推荐(0)