算法练习(100): 二项树(1.5.15)

本系列博客习题来自《算法(第四版)》,算是本人的读书笔记,如果有人在读这本书的,欢迎大家多多交流。为了方便讨论,本人新建了一个微信群(算法交流),想要加入的,请添加我的微信号:zhujinhui207407 谢谢。另外,本人的个人博客 http://www.kyson.cn 也在不停的更新中,欢迎一起讨论

算法(第4版)

知识点

  • 二项树

题目

1.5.15 二项树。请证明,对于加权 quick-union 算法,在最坏情况下树中的每一层的结点数均为二项式系数。在这种情况下,计算含有 N=2n 个节点的树中节点的平均深度。


1.5.15 Binomial trees. Show that the number of nodes at each level in the worst-case trees for weighted quick-union are binomial coefficients. Compute the average depth of a node in a worst-case tree with N = 2n nodes.

分析

答案

你可能感兴趣的:(算法练习(100): 二项树(1.5.15))