摘要: //按照完全二叉树的层次顺序一次输入节点信息建立二叉链表的算法 #include <stdio.h> #include <stdlib.h> typedef char DataType; typedef struct node { DataType data; struct node* lchild 阅读全文
posted @ 2022-10-11 21:04 巨兽~墨菲特 阅读(53) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> typedef char DataType; typedef struct node { DataType data; struct node* lchild, * rchild; } BinTNode; typedef 阅读全文
posted @ 2022-10-11 19:30 巨兽~墨菲特 阅读(31) 评论(0) 推荐(0) 编辑