Sorting number

From testwiki
Jump to navigation Jump to search

Template:Short description 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.

Formula and examples

The nth sorting number is given by the formulaTemplate:R Template:Bi The sequence of numbers given by this formula (starting with n=1) is Template:Bi

The same sequence of numbers can also be obtained from the recurrence relationTemplate:R,

A(n)=A(n/2)+A(n/2)+n1.

It is an example of a 2-regular sequence.Template:R

Asymptotically, the value of the nth sorting number fluctuates between approximately nlog2nn and nlog2n0.915n, depending on the ratio between n and the nearest power of two.Template:R

Application 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 n 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.Template:R

The same sequence of sorting numbers also gives the worst-case number of comparisons used by merge sort to sort n items.Template:R

Other applications

The sorting numbers (shifted by one position) also give the sizes of the shortest possible superpatterns for the layered permutations.Template:R

References

Template:Reflist

Template:Classes of natural numbers