Sorting number
Worst-case number of comparisons used by sorting algorithms
In mathematics and computer science, the sorting numbers are a sequence of numbers introduced in 1950 by Hugo Steinhaus for the analysis of comparison sort algorithms. These numbers give the worst-case number of comparisons used by both binary insertion sort and merge sort. However, there are other algorithms that use fewer comparisons.
01Formula and examples
The th sorting number is given by the formula
The sequence of numbers given by this formula (starting with ) is
The same sequence of numbers can also be obtained from the recurrence relation,
.
It is an example of a 2-regular sequence.
Asymptotically, the value of the th sorting number fluctuates between approximately
and
depending on the ratio between
and the nearest power of two.
02Application to sorting
In 1950, Hugo Steinhaus observed that these numbers count the number of comparisons used by binary insertion sort, and conjectured (incorrectly) that they give the minimum number of comparisons needed to sort items using any comparison sort. The conjecture was disproved in 1959 by L. R. Ford Jr. and Selmer M. Johnson, who found a different sorting algorithm, the Ford-Johnson merge-insertion sort, using fewer comparisons.
The same sequence of sorting numbers also gives the worst-case number of comparisons used by merge sort to sort items.
03Other applications
The sorting numbers (shifted by one position) also give the sizes of the shortest possible superpatterns for the layered permutations.
Sources and credits
This article is adapted from the Wikipedia article “Sorting number”, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.
Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.