给定一个修改后的二叉搜索树,找到第 k 个最小元素

发布于 2024-12-03 07:43:24 字数 113 浏览 0 评论 0原文

假设在给定的二叉树中如果每个节点包含多个子元素,那么找到树中第 k 个最小元素的最佳方法是什么?

请注意,这不是常规的 BST。每个节点都包含其下的子元素的数量。

Suppose in a given binary tree if each node contains number of child elements, then what is the optimal way to find k'th smallest element in the tree ?

Please note this is not regular BST. Each node is containing number of child element under it.

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

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

发布评论

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

评论(3

情栀口红 2024-12-10 07:43:24
find_element(root, k)

    if(root.left.nchildren + 1 == k - 1) 
        return root;

    if(root.left.nchildren + 1 >= k)
        return find_element(root.left, k)             

    else 
        return find_element(root.right, k - (root.left.children + 1))
find_element(root, k)

    if(root.left.nchildren + 1 == k - 1) 
        return root;

    if(root.left.nchildren + 1 >= k)
        return find_element(root.left, k)             

    else 
        return find_element(root.right, k - (root.left.children + 1))
绝情姑娘 2024-12-10 07:43:24

InOrder遍历方式遍历BST,并将元素存储到数组中。你的数组是一个排序数组。

Traverse BST in InOrder traverse manner and store elements to array. Your array is a sorted array.

李白 2024-12-10 07:43:24

这就是我得到的:

find (root, k)
{
leftChildCount = root->left->n
rightChildCount = root->right->n

if (leftChildCount+1 == k)
  Print root node
else if (k< leftChildCount)
  Find(root->left,k)
else
  Find(root->right,k-leftChildCount)
}

This is what I got:

find (root, k)
{
leftChildCount = root->left->n
rightChildCount = root->right->n

if (leftChildCount+1 == k)
  Print root node
else if (k< leftChildCount)
  Find(root->left,k)
else
  Find(root->right,k-leftChildCount)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文