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

时间:2011-09-06 12:56:23

标签: algorithm binary-tree binary-search-tree

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

请注意,这不是常规的BST。每个节点都包含许多子元素。

3 个答案:

答案 0 :(得分:4)

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))

答案 1 :(得分:0)

这就是我得到的:

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)
}

答案 2 :(得分:0)

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