Selection Problem: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 2: | Line 2: | ||
* [[Data Structures and Algorithms#Selection_Problem|Data Structures and Algorithms]] | * [[Data Structures and Algorithms#Selection_Problem|Data Structures and Algorithms]] | ||
* [[Sorting Algorithms#Overview]] | |||
=Overview= | =Overview= |
Revision as of 01:43, 10 August 2018
Internal
Overview
The ith order statistic of a set of n numbers is the ith smallest number in the set.
Finding the ith order statistic of a set is known as the selection problem. Finding the median is a particular case of the selection problem. The selection problem can be resolved generically by sorting the entire set and then selecting the desired element. However, key comparison sorting cannot be done more efficiently than Ω(n lgn), and more specialized and faster algorithms exist.
TODO CLRS page 213.