随笔分类 -  数据结构

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

点击右上角即可分享
微信分享提示