I believe there's a way to find the kth largest element in an unsorted array of length n in O(n). Or perhaps it's "expected" O(n) or something. How can we do this?
Cheers!
p.s. this is not for homework.
|
2
|
I believe there's a way to find the kth largest element in an unsorted array of length n in O(n). Or perhaps it's "expected" O(n) or something. How can we do this? Cheers! p.s. this is not for homework.
|
||||||
|
|
|
This is called finding the k-th order statistic. There's a very simple randomized algorithm taking O(n) time, and a pretty complicated non-randomized algorithm taking O(n) time. There's some info in wikipedia but it's not very good. Everything you need is in these powerpoint slides. Also it's very nicely detailed in the book by Cormen et al (Introduction to Algorithms). |
||
|
|
|
|
i would like to suggest one answer if we take the first k elements and sort them into a linked list of k values now for every other value even for the worst case if we do insertion sort for rest n-k values even in the worst case number of comparisons will be k*(n-k) and for prev k values to be sorted let it be k*(k-1) so it comes out to be (nk-k) which is o(n) cheers |
||
|
|
|
If you want a true O(n) algorithm, as opposed to O(kn) or something like that, then you should use quickselect (it's basically quicksort where you throw out the partition that you're not interested in). My prof has a great writeup, with the runtime analysis: |
||
|
|
|
The C++ standard library has almost exactly that function, although it does modify your data. It has expected linear run-time, O(N), and it also does a partial sort.
|
||||||
|
|
|
Read Chapter 9, Medians and Other statistics from Cormen's "Introduction to Algorithms", 2nd Ed. It has an expected linear time algorithm for selection. It's not something that people would randomly come up with in a few minutes.. A heap sort, btw, won't work in O(n), it's O(nlgn). |
||
|
|
|
|
The keywords you are looking for are selection algorithm: Wikipedia lists a number of different ways of doing this. |
||
|
|
|
|
What I would do is this:
You can simply store pointers to the first and last element in the linked list. They only change when updates to the list are made. Update:
|
||||||
|
|
|
You can do it in O(n + kn) = O(n) (for constant k) for time and O(k) for space, by keeping track of the k largest elements you've seen. For each element in the array you can scan the list of k largest and replace the smallest element with the new one if it is bigger. Warren's priority heap solution is neater though. |
||||
|
|
|
A Programmer's Companion to Algorithm Analysis gives a version that is O(n), although the author states that the constant factor is so high, you'd probably prefer the naive sort-the-list-then-select method. I answered the letter of your question :) |
||
|
|
|
|
A quick Google on that ('kth largest element array') returned this: http://discuss.joelonsoftware.com/default.asp?interview.11.509587.17
and..
|
||||||||||
|
|
|
iterate through the list. if the current value is larger than the stored largest value, store it as the largest value and bump the 1-4 down and 5 drops off the list. If not,compare it to number 2 and do the same thing. Repeat, checking it against all 5 stored values. this should do it in O(n) |
||||||||||
|