会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
吕辉
管理
2022年1月8日
二叉树的创建
摘要: 二叉树的抽象数据类型: 1 typedef char DataType; 2 typedef struct Node 3 { 4 DataType data; 5 struct Node* Lchild; 6 struct Node* Rchild; 7 }BTNode;//Binary Tree
阅读全文
posted @ 2022-01-08 23:57 吕辉
阅读(45)
评论(0)
推荐(0)