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

2024-11-16 02:59:26
推荐回答(1个)
回答1:

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