I need to find the kth smallest element in the binary search tree without using any static/global variable. How to achieve it efficiently? The solution that I have in my mind is doing the operation in O(n), the worst case since I am planning to do an inorder traversal of the entire tree. But deep down I feel that I am not using the BST property here. Is my assumptive solution correct or is there a better one available ?
|
|
Here's just an outline of the idea: Let each node in the BST have a field that returns the number of elements in its left and right subtree. Let the left subtree of node T contain only elements smaller than T and the right subtree only elements larger than or equal to T. Now, suppose we are at node T:
This is |
|||||||||||||||||
|
|
Simpler solution would be to do inorder traversal and keeping track of the element currently to be printed(without printing it). When we reach k, print the element and skip rest of tree traversal.
|
||||
|
|
|
You can use iterative inorder traversal: http://en.wikipedia.org/wiki/Tree_traversal#Iterative_Traversal with a simple check for kth element after poping a node out of the stack. |
|||
|
|
this is my implementation in C# based on the algorithm above just thought I'd post it so people can understand better it works for me thank you IVlad |
|||
|
|
|
//add a java version without recursion
|
|||
|
|
|
Given just a plain binary search tree, about all you can do is start from the smallest, and traverse upward to find the right node. If you're going to do this very often, you can add an attribute to each node signifying how many nodes are in its left sub-tree. Using that, you can descend the tree directly to the correct node. |
|||
|
|
|
For not balanced searching tree, it takes O(n). For balanced searching tree, it takes O(k + log n) in the worst case but just O(k) in Amortized sense. Having and managing the extra integer for every node: the size of the sub-tree gives O(log n) time complexity. Such balanced searching tree is usually called RankTree. In general, there are solutions (based not on tree). Regards. |
|||
|
|
|
This works well: status : is the array which holds whether element is found. k : is kth element to be found. count : keeps track of number of nodes traversed during the tree traversal.
|
|||
|
|
|
While this is definitely not the optimal solution to the problem, it is another potential solution which I thought some people might find interesting:
|
|||
|
|
|
signature:
call as:
definition:
|
|||
|
|
|
Well here is my 2 cents...
|
||||
|
|
|
This is what I though and it works. It will run in o(log n )
|
|||||
|
|
Solution for complete BST case :-
|
|||
|
|
|
The Linux Kernel has an excellent augmented red-black tree data structure that supports rank-based operations in O(log n) in linux/lib/rbtree.c. A very crude Java port can also be found at http://code.google.com/p/refolding/source/browse/trunk/core/src/main/java/it/unibo/refolding/alg/RbTree.java, together with RbRoot.java and RbNode.java. The n'th element can be obtained by calling RbNode.nth(RbNode node, int n), passing in the root of the tree. |
|||
|
|
|
Here's a concise version in C# that returns the k-th smallest element, but requires passing k in as a ref argument (it's the same approach as @prasadvk):
It's O(log n) to find the smallest node, and then O(k) to traverse to k-th node, so it's O(k + log n). |
||||
|
|
|
http://www.geeksforgeeks.org/archives/10379 this is the exact answer to this question:- 1.using inorder traversal on O(n) time 2.using Augmented tree in k+log n time |
|||
|
|
|
||||
|
|
|||
|
|
|
I couldn't find a better algorithm..so decided to write one :) Correct me if this is wrong.
} |
|||
|
|
|
Here is the java code, max(Node root, int k) - to find kth largest min(Node root, int k) - to find kth Smallest
|
|||
|
|
|
this would work too. just call the function with maxNode in the tree def k_largest(self, node , k):
if k < 0 :
return None |
|||
|
|
|
Well we can simply use the in order traversal and push the visited element onto a stack. pop k number of times, to get the answer. we can also stop after k elements |
|||||
|
|
i wrote a neat function to calculate the kth smallest element. I uses in-order traversal and stops when the it reaches the kth smallest element.
|
|||
|
|
For a binary search tree, an inorder traversal will return elements ... in order. Just do an inorder traversal and stop after traversing k elements. O(1) for constant values of k. |
|||||||||||||||
|
