平衡二叉树的节点深度总和

问题描述 投票:0回答:1

如何根据节点数计算平衡二叉树的所有节点深度之和?

algorithm tree
1个回答
0
投票

如果完全平衡,公式为

(depth - 1) * 2^(depth + 1) + 2

根位于深度 0。

© www.soinside.com 2019 - 2024. All rights reserved.