红-红-黑树中具有特定黑色高度的节点数

发布于 2024-12-29 19:26:27 字数 342 浏览 1 评论 0原文

我在作业中被要求回答一个有关“红-红-黑”树的问题。红红黑树的描述(从互联网上的某个地方复制)是:

“红红黑树是满足以下条件的二叉搜索树:

  1. 每个节点不是红色就是黑色
  2. 每片叶子(nil) )是黑色
  3. 如果一个节点是红色并且它的父节点是红色,那么它的两个子节点都是黑色
  4. 从节点到后代叶子的每个简单路径都包含相同数量的黑色节点(树的黑色高度)”

我被问到,给定一个有n个节点的红红黑树,黑高k的内部节点的最大数量是多少?最小的数字是多少?

我已经尝试思考这个问题两个多小时了,但除了头痛之外,我什么也想不到。

谢谢!

I was asked in a homework assignment to answer a question regarding "Red-Red-Black" trees. The description of a red-red-black tree (copied from somewhere in the internet) is:

"A red-red-black tree is a binary search tree that satisfies the following conditions:

  1. Every node is either red or black
  2. Every leaf (nil) is black
  3. If a node is red and it's parent is red, then both its children are black
  4. Every simple path from a node to a descendant leaf contains the same number of black nodes (the black-height of the tree)"

I was asked, given a red-red-black tree with n nodes, what is the largest number of internal nodes with black-height k? What's the smallest number?

I've been trying to think about it for more then two hours now, but apart from headache I couldn't get anywhere.

Thanks!

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

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

发布评论

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

评论(2

冰雪梦之恋 2025-01-05 19:26:27

最大节点数:(2^2k)-1

最小节点数:(2^k)-1

maximum number of nodes : (2^2k)-1

minimum number of nodes : (2^k)-1

爱,才寂寞 2025-01-05 19:26:27

两个红色节点永远不可能连续出现。
当你遍历任何路径时,黑色节点的数量应该相等。

Two Red Node can never appear continuously.
Number of Black node should be equal in when you traverse through any path.

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