- 博客(1)
- 收藏
- 关注
原创 二叉树的链式C实现(三叉链表)
二叉树作为重要的树结构,用三叉链表实现可以很方便的查找到一孩子结点的双亲结点。 #ifndef BTREE__H_ #define BTREE__H_ #include<stdio.h> #include<stdlib.h> typedef struct TElemType { int id; char name[40]; }TElemType; /*---...
2020-02-15 13:58:20 1033
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人