6-1 求二叉树高度(20 分) 本题要求给定二叉树的高度。

6-1 求二叉树高度(20 分) 本题要求给定二叉树的高度。 函数接口定义: int GetHeight( BinTree BT ); 其中BinTree结构定义以下:web typedef struct TNode *Position; typedef Position BinTree; struct TNode{ ElementType Data; BinTree Left; BinTree
相关文章
相关标签/搜索