2
votes
How to find the kth largest element in an unsorted array of length n in O(n)?
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 …
