Splay tree: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>David Eppstein
Line 1: Line 1:
A '''sorting algorithm''' is an [[algorithm]] that puts elements of a [[List (computing)|list]] in a certain [[Total order|order]]. The most-used orders are numerical order and [[lexicographical order]]. Efficient [[sorting]] is important for optimizing the use of other algorithms (such as [[search algorithm|search]] and [[merge algorithm|merge]] algorithms) which require input data to be in sorted lists; it is also often useful for [[Canonicalization|canonicalizing]] data and for producing human-readable output. More formally, the output must satisfy two conditions:
Nice to satisfy you, my name is Figures Held though I don't truly like becoming known as like that. One of the issues she loves most is to do aerobics and now she is trying to make cash with it. I am a meter reader but I plan on changing it. Puerto Rico is exactly where he's been living for many years and he will by no means transfer.<br><br>My web blog ... [http://nuvem.tk/altergalactica/MarissaepDonnt std testing at home]
 
# The output is in nondecreasing order (each element is no smaller than the previous element according to the desired [[total order]]);
# The output is a [[permutation]] (reordering) of the input.
 
Further, the data is often taken to be in an [[Array data type|array]], which allows [[random access]], rather than a list, which only allows sequential access, though often algorithms can be applied with suitable modification to either type of data.
 
Since the dawn of computing, the sorting problem has attracted a great deal of research, perhaps due to the complexity of solving it efficiently despite its simple, familiar statement. For example, [[bubble sort]] was analyzed as early as 1956.<ref>Demuth, H. Electronic Data Sorting. PhD thesis, Stanford University, 1956.</ref> A fundamental limit of comparison sorting algorithms is that they require [[linearithmic]] time – O(''n'' log ''n'') – in the worst case, though better performance is possible on real-world data (such as almost-sorted data), and algorithms not based on comparison, such as [[counting sort]], can have better performance. Although many consider sorting a solved problem – asymptotically optimal algorithms have been known since the mid-20th century – useful new algorithms are still being invented, with the now widely used [[Timsort]] dating to 2002, and the [[library sort]] being first published in 2006.
 
Sorting algorithms are prevalent in introductory computer science classes, where the abundance of algorithms for the problem provides a gentle introduction to a variety of core algorithm concepts, such as [[big O notation]], [[divide and conquer algorithm]]s, [[data structure]]s such as heaps and binary trees, [[randomized algorithm]]s, [[best, worst and average case]] analysis, [[time-space tradeoff]]s, and [[upper and lower bounds]].
 
==Classification==<!-- This section is linked from [[Merge sort]] -->
Sorting algorithms are often classified by:
 
* [[Computational complexity theory|Computational complexity]] ([[Worst-case performance|worst]], [[Average performance|average]] and [[Best-case performance|best]] behavior) of element comparisons in terms of the size of the list (''n''). For typical serial sorting algorithms good behavior is O(''n''&nbsp;log&nbsp;''n''), with parallel sort in O(log<sup>2</sup>&nbsp;''n''), and bad behavior is O(''n''<sup>2</sup>). (See [[Big O notation]].) Ideal behavior for a serial sort is O(''n''), but this is not possible in the average case, optimal parallel sorting is O(log&nbsp;''n''). [[Comparison sort|Comparison-based sorting algorithms]], which evaluate the elements of the list via an abstract key comparison operation, need at least O(''n''&nbsp;log&nbsp;''n'') comparisons for most inputs.
* [[Computational complexity theory|Computational complexity]] of swaps (for "in place" algorithms).
* Memory usage (and use of other computer resources). In particular, some sorting algorithms are "[[In-place algorithm|in place]]". Strictly, an in place sort needs only O(1) memory beyond the items being sorted; sometimes O(log(''n'')) additional memory is considered "in place".
* Recursion.  Some algorithms are either recursive or non-recursive, while others may be both (e.g., merge sort).
* Stability: [[#Stability|stable sorting algorithms]] maintain the relative order of records with equal keys (i.e., values).
* Whether or not they are a [[comparison sort]]. A comparison sort examines the data only by comparing two elements with a comparison operator.
* General method: insertion, exchange, selection, merging, ''etc.'' Exchange sorts include bubble sort and quicksort. Selection sorts include shaker sort and heapsort. Also whether the algorithm is serial or parallel. The remainder of this discussion almost exclusively concentrates upon serial algorithms and assumes serial operation.
* Adaptability: Whether or not the presortedness of the input affects the running time.  Algorithms that take this into account are known to be [[Adaptive sort|adaptive]].
 
===Stability===
[[File:Sorting stability playing cards.svg|thumb|An example of stable sorting on playing cards. When the cards are sorted by rank with a stable sort, the two 5s must remain in the same order in the sorted output that they were originally in. When they are sorted with a non-stable sort, the 5s may end up in the opposite order in the sorted output.]]
When sorting some kinds of data, only part of the data is examined when determining the sort order. For example, in the card sorting example to the right, the cards are being sorted by their rank, and their suit is being ignored. The result is that it's possible to have multiple different correctly sorted versions of the original list. Stable sorting algorithms choose one of these, according to the following rule: if two items compare as equal, like the two 5 cards, then their relative order will be preserved, so that if one came before the other in the input, it will also come before the other in the output.
 
More formally, the data being sorted can be represented as a record or tuple of values, and the part of the data that is used for sorting is called the ''key''. In the card example, cards are represented as a record (rank, suit), and the key is the rank. A sorting algorithm is stable if whenever there are two records R and S with the same key, and R appears before S in the original list, then R will always appear before S in the sorted list.
 
When equal elements are indistinguishable, such as with integers, or more generally, any data where the entire element is the key, stability is not an issue. Stability is also not an issue if all keys are different.
 
Unstable sorting algorithms can be specially implemented to be stable. One way of doing this is to artificially extend the key comparison, so that comparisons between two objects with otherwise equal keys are decided using the order of the entries in the original input list as a tie-breaker. Remembering this order, however, may require additional time and space.
 
One application for stable sorting algorithms is sorting a list using a primary and secondary key. For example, suppose we wish to sort a hand of cards such that the suits are in the order clubs (♣), diamonds (♦), hearts (♥), spades (♠), and within each suit, the cards are sorted by rank. This can be done by first sorting the cards by rank (using any sort), and then doing a stable sort by suit:
 
[[File:Sorting playing cards using stable sort.svg|400px]]
 
Within each suit, the stable sort preserves the ordering by rank that was already done. This idea can be extended to any number of keys, and is leveraged by [[radix sort]]. The same effect can be achieved with an unstable sort by using a lexicographic key comparison, which e.g. compares first by suits, and then compares by rank if the suits are the same.
 
==Comparison of algorithms==
In this table, ''n'' is the number of records to be sorted. The columns "Average" and "Worst" give the [[time complexity]] in each case, under the assumption that the length of each key is constant, and that therefore all comparisons, swaps, and other needed operations can proceed in constant time. "Memory" denotes the amount of auxiliary storage needed beyond that used by the list itself, under the same assumption. The run times and the memory requirements listed below should be understood to be inside [[big O notation]]. Logarithms are of any base; the notation <math>\log^2 n</math> means <math>(\log n)^2</math>.
 
These are all [[comparison sort]]s, and so cannot perform better than {{nowrap|O(''n'' log ''n'')}} in the average or worst case.
 
{|class="wikitable sortable"
|+ [[Comparison sort]]s
! Name !! Best !! Average !! Worst !! Memory !! Stable !! Method !! Other notes
<!-- Sorting Guide:
    00 = constant
    05 = log n
    10 = n^c, 0 < c < 1
    15 = n
    20 = n*log n or log n!
    23 = n*(log n)^2 or n^c, 1 < c < 2
    25 = n^2
    30 = n^c, c > 2
    40 = c^n, c > 1
    45 = n!
    50 = other -->
|- align="center"
| [[Quicksort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#ffd"| {{Sort|05|<math>\log n</math> on average, worst case is <math>n</math>; Sedgewick variation is <math>\log n</math> worst case}}
|style="background:#ffd"| typical in-place sort is not stable; stable versions exist
| Partitioning
|align="left"| Quicksort is usually done in place with {{nowrap|O(log ''n'')}} stack space.{{citation needed|date=December 2010}} Most implementations are unstable, as stable in-place partitioning is more complex. [[Naïve algorithm|Naïve]] variants use an O(''n'') space array to store the partition.{{citation needed|date=December 2010}}<!-- see talk page discussion for December 2010 -->
|- align="center"
| [[Merge sort]]
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#fdd"| {{Sort|15|<math>n</math> worst case}}
|style="background:#dfd"| Yes
| Merging
|align="left"| [[Merge sort#Parallel processing|Highly parallelizable]] (up to {{nowrap|O(log ''n'')}} using the Three Hungarian's Algorithm{{clarify|date=January 2014|reason=what is this?}} or, more practically, Cole's parallel merge sort) for processing large amounts of data.
|- align="center"
|nowrap| [[In-place merge sort]]
| —
| —
|style="background:#ffd"| {{Sort|23|<math>n \log^2 n</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#dfd"| Yes
| Merging
|align="left"| Can be implemented as a stable sort based on stable in-place merging.<ref>http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.54.8381</ref>
|- align="center"
| [[Heapsort]]
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#fdd"| No
| Selection
|align="left"|
|- align="center"
| [[Insertion sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#dfd"| Yes
| Insertion
|align=left| {{nowrap|O(''n'' + ''d'')}},{{clarify|date=January 2014|reason=which property is this talking about? Best? Average?}} where ''d'' is the number of [[Permutation groups#Transpositions, simple transpositions, inversions and sorting|inversions]].
|- align="center"
| [[Introsort]]
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#ffd"| {{Sort|05|<math>\log n</math>}}
|style="background:#fdd"| No
| Partitioning & Selection
|align="left"| Used in several [[Standard Template Library|STL]] implementations.
|- align="center"
| [[Selection sort]]
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#ffd"| No
| Selection
|align=left| Stable with O(n) extra space, for example using lists.<ref>http://www.algolist.net/Algorithms/Sorting/Selection_sort</ref>
|- align="center"
| [[Timsort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#fdd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| Yes
| Insertion & Merging
|align="left"| Makes ''n'' comparisons when the data is already sorted or reverse sorted.
|- align="center"
| [[Shell sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#ffd"| {{Sort|23|<math>n \log^2 n</math><br />or<br /><math>n^{3/2}</math>}}
|style="background:#ffd"| {{Sort|23|Depends on gap sequence;<br />best known is <math>n \log^2 n</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#fdd"| No
| Insertion
|align=left| Small code size, no use of call stack, reasonably fast, useful where memory is at a premium such as embedded and older mainframe applications.
|- align="center"
| [[Bubble sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#dfd"| Yes <!-- Disputed: No. Equal values are never swapped, so they never get out of order -->
| Exchanging
|align=left| Tiny code size.
|- align="center"
| [[Binary tree sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#fdd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| Yes
| Insertion
|align="left"| When using a [[self-balancing binary search tree]].
|- align="center"
| [[Cycle sort]]
| —
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#fdd"| No
| Insertion
|align=left| In-place with theoretically optimal number of writes.
|- align="center"
| [[Library sort]]
| —
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| Yes
| Insertion
|align=left|
|- align="center"
| [[Patience sorting]]
| —
| —
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#fdd"| {{Sort|15|<math>n</math>}}
|style="background:#fdd"| No
| Insertion & Selection
|align="left"| Finds all the [[longest increasing subsequence]]s in {{nowrap|O(''n'' log ''n'')}}.
|- align="center"
| [[Smoothsort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#fdd"| No
| Selection
|align="left"| An [[adaptive sort]]: <math>n</math> comparisons when the data is already sorted, and 0 swaps.
|- align="center"
| [[Strand sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| Yes
| Selection
|align="left"|
|- align="center"
| [[Tournament sort]]
| —
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#fdd"| {{Sort|15|<math>n</math><ref>http://dbs.uni-leipzig.de/skripte/ADS1/PDF4/kap4.pdf</ref>}}
| ?
| Selection
|align="left"|
|- align="center"
| [[Cocktail sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#dfd"| Yes
| Exchanging
|align=left|
|- align="center"
| [[Comb sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| {{Sort|15|<math>n \log n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#fdd"| No
| Exchanging
|align="left"| Small code size.
|- align="center"
| [[Gnome sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#dfd"| Yes
| Exchanging
|align=left| Tiny code size.
|- align="center"
|nowrap|[[UnShuffle Sort]]<ref>{{cite journal|last=Kagel|first=Art|title=Unshuffle, Not Quite a Sort|journal=Computer Language|date=November 1985|}}</ref>
|style="background:#dfd"| {{Sort|15|<math>kN</math>}}
|style="background:#fdd"| {{Sort|25|<math>kN</math>}}
|style="background:#fdd"| {{Sort|25|<math>kN</math>}}
|style="background:#dfd"| {{Sort|00|In place for linked lists. N*sizeof(link) for array.}}
|style="background:#dfd"| Can be made stable by appending the input order to the key.
|Distribution and Merge
|align=left|No exchanges are performed. Performance is independent of data size. The constant 'k' is proportional the the entropy in the input. K = 1 for ordered or ordered by reversed input so runtime is equivalent to checking the order O(N).
|- align="center"
|nowrap| Franceschini's method<ref>{{cite journal|last=Franceschini|first=Gianni|title=Sorting Stably, in Place, with {{nowrap|O(n log n)}} Comparisons and O(n) Moves|journal=Theory of Computing Systems|date=1 June 2007|volume=40|issue=4|pages=327–353|doi=10.1007/s00224-006-1311-1}}</ref>
| —
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| {{Sort|00|<math>1</math>}}
|style="background:#dfd"| Yes
|?
|align="left"|
|}
 
The following table describes [[integer sorting]] algorithms and other sorting algorithms that are not [[comparison sort]]s. As such, they are not limited by a <math>\Omega(n \log n)</math> lower bound. Complexities below assume ''n'' items to be sorted, with keys of size ''k'', digit size ''d'', and ''r'' the range of numbers to be sorted. Many of them are based on the assumption that the key size is large enough that all entries have unique key values, and hence that {{nowrap|''n'' << 2<sup>''k''</sup>}}, where << means "much less than."
 
{|class="wikitable sortable"
|+ Non-comparison sorts
! Name !! Best !! Average !! Worst !! Memory !! Stable !! {{nowrap|''n'' << 2<sup>''k''</sup>}} !! Notes
|- align="center"
| [[Pigeonhole sort]]
| —
|style="background:#dfd"| <math>n + 2^k</math>
|style="background:#dfd"| <math>n + 2^k</math>
| <math>2^k</math>
|style="background:#dfd"| Yes
| Yes
|align="left"|
|- align="center"
| [[Bucket sort]] (uniform keys)
| —
|style="background:#dfd"| <math>n+k</math>
|style="background:#fdd"| <math>n^2 \cdot k</math>
| <math>n \cdot k</math>
|style="background:#dfd"| Yes
| No
|align="left"| Assumes uniform distribution of elements from the domain in the array.<ref name="clrs">{{Introduction to Algorithms|edition=2}}</ref>
|- align="center"
| [[Bucket sort]] (integer keys)
| —
|style="background:#dfd"| <math>n+r</math>
|style="background:#dfd"| <math>n+r</math>
| <math>n+r</math>
|style="background:#dfd"| Yes
| Yes
|align="left"| If ''r'' is O(n), then Average is O(n).<ref name="gt">{{cite book
| last1 = Goodrich | first1 = Michael T. | author1-link = Michael T. Goodrich
| last2 = Tamassia | first2 = Roberto | author2-link = Roberto Tamassia
| contribution = 4.5 Bucket-Sort and Radix-Sort
| pages = 241–243
| publisher = John Wiley & Sons
| title = Algorithm Design: Foundations, Analysis, and Internet Examples
| year = 2002}}</ref>
|- align="center"
| [[Counting sort]]
| —
|style="background:#dfd"| <math>n+r</math>
|style="background:#dfd"| <math>n+r</math>
| <math>n+r</math>
|style="background:#dfd"| Yes
| Yes
|align="left"| If ''r'' is O(n), then Average is O(n).<ref name="clrs" />
|- align="center"
| [[Radix sort#Least significant digit radix sorts|LSD Radix Sort]]
| —
|style="background:#dfd"| <math>n \cdot \frac{k}{d}</math>
|style="background:#dfd"| <math>n \cdot \frac{k}{d}</math>
| <math>n</math>
|style="background:#dfd"| Yes
| No
|align="left"| <ref name="clrs" /><ref name="gt" />
|- align="center"
| [[Radix sort#Most significant digit radix sorts|MSD Radix Sort]]
| —
|style="background:#dfd"| <math>n \cdot \frac{k}{d}</math>
|style="background:#dfd"| <math>n \cdot \frac{k}{d}</math>
| <math>n + \frac{k}{d} \cdot 2^d</math>
|style="background:#dfd"| Yes
| No
|align="left"| Stable version uses an external array of size n to hold all of the bins.
|- align="center"
| [[Radix sort#Most significant digit radix sorts|MSD Radix Sort]] (in-place)
| —
|style="background:#dfd"| <math>n \cdot \frac{k}{d}</math>
|style="background:#dfd"| <math>n \cdot \frac{k}{d}</math>
| <math>\frac{k}{d} \cdot 2^d</math>
|style="background:#fdd"| No
| No
|align="left"| <math>\frac{k}{d}</math> recursion levels, 2<sup>''d''</sup> for count array.
|- align="center"
| [[Spreadsort]]
| —
|style="background:#dfd"| <math>n \cdot \frac{k}{d}</math>
|style="background:#dfd"| <math>n \cdot \left( {\frac{k}{s} + d} \right)</math>
| <math>\frac{k}{d} \cdot 2^d</math>
|style="background:#fdd"| No
| No
|align="left"| Asymptotics are based on the assumption that {{nowrap|''n'' << 2<sup>''k''</sup>}}, but the algorithm does not require this.
|}
 
The following table describes some sorting algorithms that are impractical for real-life use due to extremely poor performance or specialized hardware requirements.
 
{|class="wikitable sortable"
! Name !! Best !! Average !! Worst !! Memory !! Stable !! Comparison !! Other notes
|- align="center"
| [[Bead sort]]
| —
| N/A
| N/A
| —
| N/A
| No
| align="left"| Requires specialized hardware.
|- align="center"
| [[Pancake sorting|Simple pancake sort]]
| —
| {{Sort|15|<math>n</math>}}
| {{Sort|15|<math>n</math>}}
| {{Sort|05|<math>\log n</math>}}
|style="background:#fdd"| No
| Yes
|align="left"| Count is number of flips.
|- align="center"
| [[Spaghetti sort|Spaghetti (Poll) sort]]
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#dfd"| {{Sort|15|<math>n</math>}}
|style="background:#fdd"| {{Sort|25|<math>n^2</math>}}<!-- space should reflect amount of spaghetti needed; one rod must be at least n units long; n rods are needed. -->
|style="background:#dfd"| Yes
| Polling
|align="left"| This a linear-time, analog algorithm for sorting a sequence of items, requiring O(''n'') stack space, and the sort is stable. This requires ''n'' parallel processors. See [[Spaghetti sort#Analysis]].<!-- see talk page discussion for June 2011 -->
|- align="center"
| [[Sorting network]]s
| —
| {{Sort|05|<math>\log n</math>}}
| {{Sort|05|<math>\log n</math>}}
| {{Sort|20|<math>n \log n</math>}}
|style="background:#dfd"| Yes
| No
|align="left"| Requires a custom circuit of size {{nowrap|O(''n'' log ''n'')}}.
|}
 
Theoretical computer scientists have detailed other sorting algorithms that provide better than O(''n'' log ''n'') time complexity assuming additional constraints, including:
 
* '''Han's algorithm''', a deterministic algorithm for sorting keys from a [[Domain of a function|domain]] of finite size, taking {{nowrap|O(''n'' log log ''n'')}} time and O(''n'') space.<ref>Y. Han. ''Deterministic sorting in {{nowrap|O(n log log n)}} time and linear space''. Proceedings of the thirty-fourth annual ACM symposium on theory of computing, Montreal, Quebec, Canada, 2002, pp. 602-608.</ref>
* '''Thorup's algorithm''', a randomized algorithm for sorting keys from a domain of finite size, taking {{nowrap|O(''n'' log log ''n'')}} time and O(''n'') space.<ref>[[Mikkel Thorup|M. Thorup]]. ''Randomized Sorting in {{nowrap|O(n log log n)}} Time and Linear Space Using Addition, Shift, and Bit-wise Boolean Operations''. Journal of Algorithms, Volume 42, Number 2, February 2002, pp. 205-230(26).</ref>
* A randomized [[integer sorting]] algorithm taking <math>O\bigl(n \sqrt{\log \log n}\bigr)</math> expected time and O(''n'') space.<ref>Han, Y. and [[Mikkel Thorup|Thorup, M.]] 2002. Integer Sorting in <math>O\bigl(n \sqrt{\log \log n}\bigr)</math> Expected Time and Linear Space. In ''Proceedings of the 43rd Symposium on Foundations of Computer Science'' (November 16–19, 2002). FOCS. IEEE Computer Society, Washington, DC, pp. 135-144.</ref>
 
Algorithms not yet compared above include:
* [[Odd-even sort]]
* [[Flashsort]]
* [[Burstsort]]
* [[Postman sort]]
* [[Stooge sort]]
* [[Samplesort]]
* [[Bitonic sorter]]
 
==Popular sorting algorithms==
While there are a large number of sorting algorithms, in practical implementations a few algorithms predominate. Insertion sort is widely used for small data sets, while for large data sets an asymptotically efficient sort is used, primarily heap sort, merge sort, or quicksort. Efficient implementations generally use a [[hybrid algorithm]], combining an asymptotically efficient algorithm for the overall sort with insertion sort for small lists at the bottom of a recursion. Highly tuned implementations use more sophisticated variants, such as [[Timsort]] (merge sort, insertion sort, and additional logic), used in Android, Java, and Python, and [[introsort]] (quicksort and heap sort), used (in variant forms) in some [[sort (C++)|C++ sort]] implementations and in .Net.
 
For more restricted data, such as numbers in a fixed interval, [[#Distribution sort|distribution sorts]] such as counting sort or radix sort are widely used. Bubble sort and variants are rarely used in practice, but are commonly found in teaching and theoretical discussions.
 
When physically sorting objects, such as alphabetizing papers (such as tests or books), people intuitively generally use insertion sorts for small sets. For larger sets, people often first bucket, such as by initial letter, and multiple bucketing allows practical sorting of very large sets. Often space is relatively cheap, such as by spreading objects out on the floor or over a large area, but operations are expensive, particularly moving an object a large distance – locality of reference is important. Merge sorts are also practical for physical objects, particularly as two hands can be used, one for each list to merge, while other algorithms, such as heap sort or quick sort, are poorly suited for human use. Other algorithms, such as [[library sort]], a variant of insertion sort that leaves spaces, are also practical for physical use.
 
===Simple sorts===
Two of the simplest sorts are insertion sort and selection sort, both of which are efficient on small data, due to low overhead, but not efficient on large data. Insertion sort is generally faster than selection sort in practice, due to fewer comparisons and good performance on almost-sorted data, and thus is preferred in practice, but selection sort uses fewer writes, and thus is used when write performance is a limiting factor.
 
====Insertion sort====
{{Main|Insertion sort}}
''[[Insertion sort]]'' is a simple sorting algorithm that is relatively efficient for small lists and mostly sorted lists, and often is used as part of more sophisticated algorithms. It works by taking elements from the list one by one and inserting them in their correct position into a new sorted list. In arrays, the new list and the remaining elements can share the array's space, but insertion is expensive, requiring shifting all following elements over by one. [[#Shell sort|Shell sort]] (see below) is a variant of insertion sort that is more efficient for larger lists.
 
====Selection sort====
{{Main|Selection sort}}
 
''Selection sort'' is an [[in-place algorithm|in-place]] [[comparison sort]]. It has [[Big O notation|O]](''n''<sup>2</sup>) complexity, making it inefficient on large lists, and generally performs worse than the similar [[insertion sort]]. Selection sort is noted for its simplicity, and also has performance advantages over more complicated algorithms in certain situations.
 
The algorithm finds the minimum value, swaps it with the value in the first position, and repeats these steps for the remainder of the list. It does no more than ''n'' swaps, and thus is useful where swapping is very expensive.
 
===Efficient sorts===
Practical general sorting algorithms are almost always based on an algorithm with average complexity (and generally worst-case complexity) O(''n'' log ''n''), of which the most common are heap sort, merge sort, and quicksort. Each has advantages and drawbacks, with the most significant being that simple implementation of merge sort uses O(''n'') additional space, and simple implementation of quicksort has O(''n''<sup>2</sup>) worst-case complexity. These problems can be solved or ameliorated at the cost of a more complex algorithm.
 
While these algorithms are asymptotically efficient on random data, for practical efficiency on real-world data various modifications are used. First, the overhead of these algorithms becomes significant on smaller data, so often a hybrid algorithm is used, commonly switching to insertion sort once the data is small enough. Second, the algorithms often perform poorly on already sorted data or almost sorted data – these are common in real-world data, and can be sorted in O(''n'') time by appropriate algorithms. Finally, they may also be [[unstable sort|unstable]], and stability is often a desirable property in a sort. Thus more sophisticated algorithms are often employed, such as [[Timsort]] (based on merge sort) or [[introsort]] (based on quicksort, falling back to heap sort).
 
====Merge sort====
{{Main|Merge sort}}
''Merge sort'' takes advantage of the ease of merging already sorted lists into a new sorted list. It starts by comparing every two elements (i.e., 1 with 2, then 3 with 4...) and swapping them if the first should come after the second. It then merges each of the resulting lists of two into lists of four, then merges those lists of four, and so on; until at last two lists are merged into the final sorted list. Of the algorithms described here, this is the first that scales well to very large lists, because its worst-case running time is O(''n'' log ''n''). It is also easily applied to lists, not only arrays, as it only requires sequential access, not random access. However, it has additional O(''n'') space complexity, and involves a large number of copies in simple implementations.
 
Merge sort has seen a relatively recent surge in popularity for practical implementations, due to its use in the sophisticated algorithm [[Timsort]], which is used for the standard sort routine in the programming languages [[Python (programming language)|Python]]<ref>[http://svn.python.org/projects/python/trunk/Objects/listsort.txt Tim Peters's original description of timsort]</ref> and [[Java (programming language)|Java]] (as of [[JDK7]]<ref>http://hg.openjdk.java.net/jdk7/tl/jdk/rev/bfd7abda8f79</ref>). Merge sort itself is the standard routine in [[Perl]],<ref>[http://perldoc.perl.org/functions/sort.html Perl sort documentation]</ref> among others, and has been used in Java at least since 2000 in JDK1.3.<ref name = "mergesort_in_jdk13">[http://java.sun.com/j2se/1.3/docs/api/java/util/Arrays.html#sort(java.lang.Object%5B%5D) Merge sort in Java 1.3], Sun.</ref><ref name = "jdk13_since_2000">[[Java version history#J2SE 1.3 (May 8, 2000)|Java 1.3 live since 2000]]</ref>
 
====Heapsort====
{{Main|Heapsort}}
''Heapsort'' is a much more efficient version of [[selection sort]]. It also works by determining the largest (or smallest) element of the list, placing that at the end (or beginning) of the list, then continuing with the rest of the list, but accomplishes this task efficiently by using a data structure called a [[heap (data structure)|heap]], a special type of [[binary tree]]. Once the data list has been made into a heap, the root node is guaranteed to be the largest (or smallest) element. When it is removed and placed at the end of the list, the heap is rearranged so the largest element remaining moves to the root. Using the heap, finding the next largest element takes O(log ''n'') time, instead of O(''n'') for a linear scan as in simple selection sort. This allows Heapsort to run in O(''n'' log ''n'') time, and this is also the worst case complexity.
 
====Quicksort====
{{Main|Quicksort}}
''Quicksort'' is a [[divide and conquer algorithm|divide and conquer]] [[algorithm]] which relies on a ''partition'' operation: to partition an array an element called a ''pivot'' is selected. All elements smaller than the pivot are moved before it and all greater elements are moved after it. This can be done efficiently in linear time and [[in-place algorithm|in-place]]. The lesser and greater sublists are then recursively sorted. This yields average time complexity of O(''n'' log ''n''), with low overhead, and thus this is a popular algorithm. Efficient implementations of quicksort (with in-place partitioning) are typically unstable sorts and somewhat complex, but are among the fastest sorting algorithms in practice. Together with its modest O(log ''n'') space usage, quicksort is one of the most popular sorting algorithms and is available in many standard programming libraries.
 
The important caveat about quicksort is that its worst-case performance is O(''n''<sup>2</sup>); while this is rare, in naive implementations (choosing the first or last element as pivot) this occurs for sorted data, which is a common case. The most complex issue in quicksort is thus choosing a good pivot element, as consistently poor choices of pivots can result in drastically slower O(''n''<sup>2</sup>) performance, but good choice of pivots yields O(''n'' log ''n'') performance, which is asymptotically optimal. For example, if at each step the [[median]] is chosen as the pivot then the algorithm works in O(''n''&nbsp;log&nbsp;''n''). Finding the median, such as by the [[median of medians]] [[selection algorithm]] is however an O(''n'') operation on unsorted lists and therefore exacts significant overhead with sorting. In practice choosing a random pivot [[almost certainly]] yields O(''n''&nbsp;log&nbsp;''n'') performance.
 
===Bubble sort and variants===
Bubble sort, and variants such as the [[cocktail sort]], are simple but highly inefficient sorts. They are thus frequently seen in introductory texts, and are of some theoretical interest due to ease of analysis, but they are rarely used in practice, and primarily of recreational interest. Some variants, such as the Shell sort, have open questions about their behavior.
 
====Bubble sort====
[[File:Bubblesort-edited-color.svg|thumb|right|A bubble sort, a sorting algorithm that continuously steps through a list, [[Swap (computer science)|swapping]] items until they appear in the correct order.]]
{{Main|Bubble sort}}
 
''Bubble sort'' is a simple sorting algorithm. The algorithm starts at the beginning of the data set. It compares the first two elements, and if the first is greater than the second, it swaps them. It continues doing this for each pair of adjacent elements to the end of the data set. It then starts again with the first two elements, repeating until no swaps have occurred on the last pass. This algorithm's average and worst case performance is O(''n''<sup>2</sup>), so it is rarely used to sort large, unordered data sets. Bubble sort can be used to sort a small number of items (where its asymptotic inefficiency is not a high penalty). Bubble sort can also be used efficiently on a list of any length that is nearly sorted (that is, the elements are not significantly out of place). For example, if any number of elements are out of place by only one position (e.g. 0123546789 and 1032547698), bubble sort's exchange will get them in order on the first pass, the second pass will find all elements in order, so the sort will take only 2''n'' time.
 
====Shell sort====
 
[[File:Shellsort-edited.png|thumb|right|A Shell sort, different from bubble sort in that it moves elements to numerous [[Swap (computer science)|swapping positions]] ]]
 
{{Main|Shellsort|l1=Shell sort}}
 
''Shell sort'' was invented by [[Donald Shell]] in 1959. It improves upon bubble sort and insertion sort by moving out of order elements more than one position at a time. One implementation can be described as arranging the data sequence in a two-dimensional array and then sorting the columns of the array using insertion sort.
 
====Comb sort====
{{Main|Comb sort}}
''Comb sort'' is a relatively simple sorting algorithm originally designed by Wlodzimierz Dobosiewicz in 1980.<ref name=BB>[http://www.sciencedirect.com/science/article/pii/S0020019000002234 Brejová, Bronislava.  "Analyzing variants of Shellsort"]</ref> Later it was rediscovered and popularized by Stephen Lacey and Richard Box with a [[Byte Magazine]] article published in April 1991. Comb sort improves on [[bubble sort]]. The basic idea is to eliminate ''turtles'', or small values near the end of the list, since in a bubble sort these slow the sorting down tremendously. (''Rabbits'', large values around the beginning of the list, do not pose a problem in bubble sort)
 
===Distribution sort===
{{see also|External sorting}}
''Distribution sort'' refers to any sorting algorithm where data are distributed from their input to multiple intermediate structures which are then gathered and placed on the output. For example, both [[bucket sort]] and [[flashsort]] are distribution based sorting algorithms. Distribution sorting algorithms can be used on a single processor, or they can be a [[distributed algorithm]], where individual subsets are separately sorted on different processors, then combined. This allows [[external sorting]] of data too large to fit into a single computer's memory.
 
====Counting sort====
{{Main|Counting sort}}
Counting sort is applicable when each input is known to belong to a particular set, ''S'', of possibilities.  The algorithm runs in O(|''S''| + ''n'') time and O(|''S''|) memory where ''n'' is the length of the input.  It works by creating an integer array of size |''S''| and using the ''i''th bin to count the occurrences of the ''i''th member of ''S'' in the input.  Each input is then counted by incrementing the value of its corresponding bin.  Afterward, the counting array is looped through to arrange all of the inputs in order.  This sorting algorithm cannot often be used because ''S'' needs to be reasonably small for it to be efficient, but the algorithm is extremely fast and demonstrates great asymptotic behavior as ''n'' increases.  It also can be modified to provide stable behavior.
 
====Bucket sort====
{{Main|Bucket sort}}
Bucket sort is a [[divide and conquer algorithm|divide and conquer]] sorting algorithm that generalizes [[Counting sort]] by partitioning an array into a finite number of buckets. Each bucket is then sorted individually, either using a different sorting algorithm, or by recursively applying the bucket sorting algorithm.
 
Due to the fact that bucket sort must use a limited number of buckets it is best suited to be used on data sets of a limited scope. Bucket sort would be unsuitable for data that have a lot of variation, such as social security numbers.
 
====Radix sort====
{{Main|Radix sort}}
''Radix sort'' is an algorithm that sorts numbers by processing individual digits. ''n'' numbers consisting of ''k'' digits each are sorted in O(''n'' · ''k'') time.  Radix sort can process digits of each number either starting from the [[least significant digit]] (LSD) or starting from the [[most significant digit]] (MSD).  The LSD algorithm first sorts the list by the least significant digit while preserving their relative order using a stable sort. Then it sorts them by the next digit, and so on from the least significant to the most significant, ending up with a sorted list. While the LSD radix sort requires the use of a stable sort, the MSD radix sort algorithm does not (unless stable sorting is desired).  In-place MSD radix sort is not stable.  It is common for the [[counting sort]] algorithm to be used internally by the radix sort.  A [[hybrid algorithm|hybrid]] sorting approach, such as using [[insertion sort]] for small bins improves performance of radix sort significantly.
 
==Memory usage patterns and index sorting==
When the size of the array to be sorted approaches or exceeds the available primary memory, so that (much slower) disk or swap space must be employed, the memory usage pattern of a sorting algorithm becomes important, and an algorithm that might have been fairly efficient when the array fit easily in RAM may become impractical. In this scenario, the total number of comparisons becomes (relatively) less important, and the number of times sections of memory must be copied or swapped to and from the disk can dominate the performance characteristics of an algorithm. Thus, the number of passes and the localization of comparisons can be more important than the raw number of comparisons, since comparisons of nearby elements to one another happen at [[computer bus|system bus]] speed (or, with caching, even at [[Central Processing Unit|CPU]] speed), which, compared to disk speed, is virtually instantaneous.
 
For example, the popular recursive [[quicksort]] algorithm provides quite reasonable performance with adequate RAM, but due to the recursive way that it copies portions of the array it becomes much less practical when the array does not fit in RAM, because it may cause a number of slow copy or move operations to and from disk. In that scenario, another algorithm may be preferable even if it requires more total comparisons.
 
One way to work around this problem, which works well when complex records (such as in a [[relational database]]) are being sorted by a relatively small key field, is to create an index into the array and then sort the index, rather than the entire array. (A sorted version of the entire array can then be produced with one pass, reading from the index, but often even that is unnecessary, as having the sorted index is adequate.)  Because the index is much smaller than the entire array, it may fit easily in memory where the entire array would not, effectively eliminating the disk-swapping problem. This procedure is sometimes called "tag sort".<ref>[http://www.pcmag.com/encyclopedia_term/0,2542,t=tag+sort&i=52532,00.asp Definition of "tag sort" according to PC Magazine]</ref>
 
Another technique for overcoming the memory-size problem is to combine two algorithms in a way that takes advantages of the strength of each to improve overall performance. For instance, the array might be subdivided into chunks of a size that will fit in RAM, the contents of each chunk sorted using an efficient algorithm (such as [[quicksort]]), and the results merged using a ''k''-way merge similar to that used in [[mergesort]]. This is faster than performing either mergesort or quicksort over the entire list.
 
Techniques can also be combined. For sorting very large sets of data that vastly exceed system memory, even the index may need to be sorted using an algorithm or combination of algorithms designed to perform reasonably with [[virtual memory]], i.e., to reduce the amount of swapping required.
 
==Inefficient/humorous sorts==
 
Some algorithms are slow compared to those discussed above, such as the [[bogosort]] ''O''(''n''&sdot;''n''!) and the [[stooge sort]] ''O''(''n''<sup>2.7</sup>).
 
==Related algorithms==
Related problems include [[partial sorting]] (sorting only the ''k'' smallest elements of a list, or alternatively computing the ''k'' smallest elements, but unordered) and [[selection algorithm|selection]] (computing the ''k''th smallest element). These can be solved inefficiently by a total sort, but more efficient algorithms exist, often derived by generalizing a sorting algorithm. The most notable example is [[quickselect]], which is related to [[quicksort]]. Conversely, some sorting algorithms can be derived by repeated application of a selection algorithm; quicksort and quickselect can be seen as the same pivoting move, differing only in whether one recurses on both sides (quicksort, [[divide and conquer algorithm|divide and conquer]]) or one side (quickselect, [[decrease and conquer]]).
 
A kind of opposite of a sorting algorithm is a [[shuffling algorithm]]. These are fundamentally different because they require a source of random numbers. Interestingly, shuffling can also be implemented by a sorting algorithm, namely by a random sort: assigning a random number to each element of the list and then sorting based on the random numbers. This is generally not done in practice, however, and there is a well-known simple and efficient algorithm for shuffling: the [[Fisher–Yates shuffle]].
 
==See also==
* [[Collation]]
* [[Sorting network]] (compare)
* [[Schwartzian transform]]
* [[Search algorithm]]
* [[Quantum sort]]
 
==References==
{{More footnotes|date=September 2009}}
{{Reflist}}
* [[D. E. Knuth]], ''[[The Art of Computer Programming]], Volume 3: Sorting and Searching''.
 
==External links==
{{wikibooks|Algorithm implementation|Sorting|Sorting algorithms}}
{{wikibooks|A-level Mathematics|OCR/D1/Algorithms#Sorting Algorithms|Sorting algorithms}}
{{commons|Category:Sort algorithms|Sorting algorithms}}
* [http://www.sorting-algorithms.com/ Sorting Algorithm Animations] - Graphical illustration of how different algorithms handle different kinds of data sets.
* [http://www.iti.fh-flensburg.de/lang/algorithmen/sortieren/algoen.htm Sequential and parallel sorting algorithms] - Explanations and analyses of many sorting algorithms.
* [http://www.nist.gov/dads/ Dictionary of Algorithms, Data Structures, and Problems] - Dictionary of algorithms, techniques, common functions, and problems.
* [http://www.softpanorama.org/Algorithms/sorting.shtml Slightly Skeptical View on Sorting Algorithms] Discusses several classic algorithms and promotes alternatives to the [[quicksort]] algorithm.
* [http://www.youtube.com/watch?v=kPRA0W1kECg 15 Sorting Algorithms in 6 Minutes (Youtube)] Visualization and "audibilization" of 15 Sorting Algorithms in 6 Minutes.
 
{{sorting}}
 
{{DEFAULTSORT:Sorting Algorithm}}
[[Category:Sorting algorithms| ]]
[[Category:Data processing]]

Revision as of 06:58, 17 February 2014

Nice to satisfy you, my name is Figures Held though I don't truly like becoming known as like that. One of the issues she loves most is to do aerobics and now she is trying to make cash with it. I am a meter reader but I plan on changing it. Puerto Rico is exactly where he's been living for many years and he will by no means transfer.

My web blog ... std testing at home