摘要: 二叉树的创建和三种遍历方式 帮同学写作业顺带复习了一下 直接丢代码了: #include <stdio.h> #include <stdlib.h> // 二叉树节点结构体&指针类型 typedef struct BiTNode { char data; // 数据域 struct BiTNode* 阅读全文
posted @ 2021-10-14 20:43 Mz1 阅读(425) 评论(0) 推荐(0) 编辑