2017年2月5日
摘要: typedef struct TreeNode *BinTree; typedef BinTree Position; struct TreeNode{ ElementType Data; BinTree Left; BinTree Right; }; BinTree BT; //二叉树的遍历 void PreOrderTraversal(BinTree BT)//(1)先序遍历 ... 阅读全文
posted @ 2017-02-05 04:03 chy89224 阅读(185) 评论(0) 推荐(0) 编辑
摘要: typedef struct TreeNode *BinTree; typedefBinTree Position; struct TreeNode{ ElementType Data; BinTree Left; BinTree Right; }; BinTree BT; 阅读全文
posted @ 2017-02-05 04:01 chy89224 阅读(106) 评论(0) 推荐(0) 编辑