📜  门| GATE-CS-2015(套装1)|第 65 题

📅  最后修改于: 2021-09-24 05:06:13             🧑  作者: Mango

树的高度是其中最长的根到叶路径的长度。高度为 5 的二叉树的最大和最小节点数为
(A)分别为 63 和 6
(B)分别为 64 和 5
(C)分别为 32 和 6
(D)分别为 31 和 5答案:(一)
解释:

Number of nodes is maximum for a perfect binary tree.
A perfect binary tree of height h has 2h+1 - 1 nodes

Number of nodes is minimum for a skewed binary tree.
A perfect binary tree of height h has h+1 nodes.

这个问题的测验