摘要:
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
阅读(195)
评论(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
阅读(108)
评论(0)
推荐(0)
浙公网安备 33010602011771号