Consider a binary heap containing n numbers (the root stores the greatest number). You are given a positive integer k < n and a number x. You have to determine whether the kth largest element of the heap is greater than x or not. Your algorithm must take O(k) time. You may use O(k) extra storage
|
|
Simple dfs can do it, you should have a counter set to zero, start from root, in each iteration check the node value if is greater than x, increase counter and run algorithm for child nodes, when the counter comes bigger or equal to k your algorithm will be finished, also if there is no node to check, your algorithm should return false, the code is simple. the running time is O(k) because at most you will check k node and each iteration is O(1). Edit: I wrote code to show how (may be my bad english doesn't show it in text):
use it:
if node.value < x then all children values are smaller than x and there is no need to check. Edit: As Eric Mickelsen mentioned in his comment worst case running time will be 2k-1 (k>0):
|
|||||||||||||||||||
|