- 博客(1)
- 问答 (1)
- 收藏
- 关注
转载 8608 实现二叉排序树的各种算法(2)引用改指针
#include<stdio.h> #include<stdlib.h> #define OK 1 #define ERROR 0 #define Maxsize 100 typedef int TElemType; typedef int status; typedef struct BTree { TElemType data; struct BTree *lchild,*rchild; }BTnode,*BTpoint; typedef struct sta...
2020-06-13 17:20:13
310
空空如也
typedef问题相关问题问题问题问题问题
2020-07-14
TA创建的收藏夹 TA关注的收藏夹
TA关注的人