不相交联合查找分析

发布于 2024-12-07 18:41:48 字数 762 浏览 0 评论 0 原文

在不相交联合中,假设我们必须合并高度分别为 h1 和 h2 的两棵树。使用这种技术,如果 h1 不等于 h2,则生成的合并树的高度将为 max(h1, h2),如果 h1 == h2,则生成的合并树的高度将为 h1+1。在从初始情况开始的任意序列的合并操作之后使用此技术,包含“k”个节点的树具有高度 至多(logk 的下限)。这通过归纳法证明如下。

底数:当 k=1 时,高度为 0。0<= (floor(log 1))

归纳步骤:考虑 k >1 并假设定理对于所有 m 都成立,使得 1< ;=m。通过合并两个较小的子树可以获得包含 k 个节点的树。假设这两个较小的树分别包含“a”和“b”节点,我们可以不失一般性地假设a<=b。现在a>=1,因此无法通过 从初始情况开始零个节点,k=a+b。 因此,a<=k/2b<=k+1 由于 k>1,两者k/2 < k,并且(k-1) < k,因此 ab

我对上面的问题是

  1. 我们如何得到上面的“它遵循 a<=k/2 和 b<=k+1”语句。

谢谢!

In disjoint union suppose we have to merge two trees whose heights are respectively h1 and h2. Using this technique, the height of the resulted merged tree will be max(h1, h2) if h1 not equal to h2, or h1+1 if h1 == h2. Using this technique after an arbitrary sequence of merge operations starting from initial situation, a tree containing 'k' nodes has a height
at most (floor of logk). This is proved by induction as follows.

Base: when k=1 height is 0. 0<= (floor(log 1))

Induction step: consider k >1 and by hypothesis therorm is true for all m such that 1<=m<k. A tree containing k nodes can be obtained by merging two smaller subtrees. suppose these two smaller trees contain respectively 'a' and 'b' nodes where we may assume with out loss of generality a<=b. Now a>=1, therefore there is no way of obtaining a tree with
zero nodes starting from the initial situation, and k=a+b. It follows that a<=k/2 and b<=k+1, since k>1, both k/2 < k, and (k-1) < k and hence a<k, and b<k.

My question on above is

  1. How we got "It follows that a<=k/2 and b<=k+1" statement above.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水染的天色ゝ 2024-12-14 18:41:48

我们假设 a > k/2,然后b > k/2,因为b>=a。然后a + b > k/2 + k/2。因此,a + b > k。但我们有k = a + b!所以假设 a > k/2 会导致矛盾,因此是错误的。这“证明”了a <= k/2

用英语来说:如果我们将 k 分成两部分 ab,其中 bb 大一半, code>a 必须小于 k 的一半。

Let's assume a > k/2, then b > k/2, because b>=a. Then a + b > k/2 + k/2. Thus, a + b > k. But we have k = a + b! So the assumption that a > k/2 is leads to a contradiction, and is thus false. This 'proves' that a <= k/2.

In english: if we split k in two parts a and b, where b is bigger half, than a must be less than half of k.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文