gpt4 book ai didi

data-structures - 如果您知道二叉树的节点数,如何找到二叉树的最小高度?

转载 作者:行者123 更新时间:2023-12-02 08:45:22 25 4
gpt4 key购买 nike

设n为一棵二叉树的节点数,那么求出二叉树最小高度的泛函项是什么?

我认为它将是 n=floor(log2(n))+1。但是,我想,我错了。

最佳答案

看到记住这个概念就是

for height to be minimum you will have to give each level, the maximum no of nodes it can accomodate

所以对于一棵高度为h的树,树最多可以容纳的节点数=2^(h+1)-1,所以n<=2^(h+1)-1
解决后你会得到
h>=log(n+1)base2 -1
现在要决定日志的地板或天花板,这样想

If my logn is coming 3.56.. then it means that till height 3 each level is fully consumed, last level is not completely filled. So as the definition of height says that it is the longest path from root to the leaf, so in height we will include that last level also.

因此 ceil 比 floor 更受欢迎。通过这种方法,您还可以找到 m-ary 树。

关于data-structures - 如果您知道二叉树的节点数,如何找到二叉树的最小高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12885824/

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