2017年2月9日
摘要: 1 typedef struct TreeNode *BinTree; 2 typedef BinTree Position; 3 struct TreeNode{ 4 ElementType Data; 5 BinTree Left; 6 BinTree Right; 7 }; 8 BinTree BT; 9 void LevelOrder... 阅读全文
posted @ 2017-02-09 20:43 chy89224 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1 typedef struct TreeNode *BinTree; 2 typedef BinTree Position; 3 struct TreeNode{ 4 ElementType Data; 5 BinTree Left; 6 BinTree Right; 7 }; 8 BinTree BT; 9 void InOrderTr... 阅读全文
posted @ 2017-02-09 20:39 chy89224 阅读(323) 评论(0) 推荐(0) 编辑