這是我在bst中的高度函數。 cpp二進制搜索樹,高度
int IntBinaryTree::getHeight(TreeNode * nodePtr)
{
if(nodePtr = NULL)
return 0;
else
return (max(1+getHeight(nodePtr->left), 1+getHeight(nodePtr->right)));
}
當我在main()中調用它時。我有一個錯誤。
這是我的主要()
int main {
IntBinaryTree tree;
....
tree. getHeight();
return 0;
}
什麼是錯誤。 – YoungJohn 2014-09-04 21:34:55
難道你沒有將參數傳遞給你的函數嗎? – 2014-09-04 21:54:18