As we can choose median of 3 element partitioning to implement quick sort. Likewise can we choose median of 5, 7, or 11 element to implement quick sort? If so, then how??
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You should look into the Median of Medians algorithm. It is a linear time algorithm with the following recurrence...
... which is O(n). The algorithm details...
... and some pseudo-code...
References
I hope this helps. |
||||
|