摘要: 二叉树的抽象数据类型: 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)