gpt4 book ai didi

c - 这个函数如何计算树中的节点数?

转载 作者:行者123 更新时间:2023-12-04 11:29:26 25 4
gpt4 key购买 nike

计算树中节点数的函数。

int count(node *t)
{
int i;
if (t == NULL)
return(0);
i = 1 + count(t->left) + count(t->right); // recursion occurs address of left node is passed and
return(i); // continue to pass until whole left node
} // is traversed and the value of t is
// NULL and 0 is returned same for right node counting
// i = 1 + 0 + 0 = 1

节点数是怎么统计的?

最佳答案

关于c - 这个函数如何计算树中的节点数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5895959/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com