统计二叉树中结点个数的算法(数据结构)

2024年11月16日 02:59
有1个网友回答
网友(1):

自己根据实际的数据类型名修改一下就可以了
int Count(BinTreeNode *root)
{
if (root)
return 1 + Count(root->leftchild) + Count(root->rightchild);
else
return 0;
}