1. 首页
  2. 移动开发
  3. 其他
  4. 数据结构树的遍历代码

数据结构树的遍历代码

上传者: 2020-08-20 16:28:00上传 TXT文件 879B 热度 13次
#include #include #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef char TElemType; typedef int Status; typedef struct node{ TElemType data; struct node *lchild,*rchild; }BinTNode; typedef BinTNode *BiTree;
用户评论
码姐姐匿名网友 2020-08-20 16:28:00

嗯,帮同学下的,应该有用~~