二叉樹--求二叉樹的高度/銷燬一顆二叉樹

求二叉樹的高度 思路: 遞歸:求左子樹的高度,求右子樹的高度,最後看哪一個高度高選哪一個。web size_t Height(BinaryTreeNode<T>* pRoot) { if(pRoot == NULL) return 0; int LeftHeight = Height(pRoot->Left) + 1; int RightHeigh
相關文章
相關標籤/搜索