Selection sort

Selection sort

Infobox Algorithm
class=Sorting algorithm


data=Array
time="О(n²)"
space="О(n)" total, "O(1)" auxiliary
optimal=Not usually

Selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O("n"2) 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.

Method

The algorithm works as follows:

# Find the minimum value in the list
# Swap it with the value in the first position
# Repeat the steps above for remainder of the list (starting at the second position)

Effectively, we divide the list into two parts: the sublist of items already sorted, which we build up from left to right and is found at the beginning, and the sublist of items remaining to be sorted, occupying the remainder of the array.

Here is an example of this sort algorithm sorting five elements:

64 25 12 22 1111 25 12 22 64

11 12 25 22 6411 12 22 25 64

Selection sort can also be used on list structures that make add and remove efficient, such as a linked list. In this case it's more common to "remove" the minimum element from the remainder of the list, and then "insert" it at the end of the values sorted so far. For example:

64 25 12 22 1111 64 25 12 2211 12 64 25 2211 12 22 64 2511 12 22 25 64

Pseudo-code

A is the set of elements to sort, n is the number of elements in A (the array starts at index 0)

for i ← 0 to n-2 do min ← i for j ← (i + 1) to n-1 do if A [j] < A [min] min ← j swap A [i] and A [min]

Analysis

Selection sort is not difficult to analyze compared to other sorting algorithms since none of the loops depend on the data in the array. Selecting the lowest element requires scanning all "n" elements (this takes "n" − 1 comparisons) and then swapping it into the first position. Finding the next lowest element requires scanning the remaining "n" − 1 elements and so on, for ("n" − 1) + ("n" − 2) + ... + 2 + 1 = "n"("n" − 1) / 2 &isin; Θ("n"2) comparisons (see arithmetic progression). Each of these scans requires one swap for "n" − 1 elements (the final element is already in place).

Comparison to other sorting algorithms

Among simple average-case Θ("n"2) algorithms, selection sort always outperforms bubble sort and gnome sort, but is generally outperformed by insertion sort. Insertion sort is very similar in that after the "k"th iteration, the first "k" elements in the array are in sorted order. Insertion sort's advantage is that it only scans as many elements as it needs in order to place the "k" + 1st element, while selection sort must scan all remaining elements to find the "k" + 1st element.

Simple calculation shows that insertion sort will therefore usually perform about half as many comparisons as selection sort, although it can perform just as many or far fewer depending on the order the array was in prior to sorting. It can be seen as an advantage for some real-time applications that selection sort will perform identically regardless of the order of the array, while insertion sort's running time can vary considerably. However, this is more often an advantage for insertion sort in that it runs much more efficiently if the array is already sorted or "close to sorted."

Another key difference is that selection sort always performs Θ("n") swaps, while insertion sort performs Θ("n"2) swaps in the average and worst cases. Because swaps require writing to the array, selection sort is preferable if writing to memory is significantly more expensive than reading. This is generally the case if the items are huge but the keys are small. Another example where writing times are crucial is an array stored in EEPROM or Flash.There is no other algorithm with less data movement.

Finally, selection sort is greatly outperformed on larger arrays by Θ("n" log "n") divide-and-conquer algorithms such as quicksort and mergesort. However, insertion sort or selection sort are both typically faster for small arrays (i.e. fewer than 10-20 elements). A useful optimization in practice for the recursive algorithms is to switch to insertion sort or selection sort for "small enough" sublists.

Variants

Heapsort greatly improves the basic algorithm by using an implicit heap data structure to speed up finding and removing the lowest datum. If implemented correctly, the heap will allow finding the next lowest element in Θ(log "n") time instead of Θ("n") for the inner loop in normal selection sort, reducing the total running time to Θ("n" log "n").

A bidirectional variant of selection sort, called cocktail sort, is an algorithm which finds both the minimum and maximum values in the list in every pass. This reduces the number of scans of the list by a factor of 2, eliminating some loop overhead but not actually decreasing the number of comparisons or swaps. Note, however, that cocktail sort more often refers to a bidirectional variant of bubble sort.

Selection sort can be implemented as a stable sort. If, rather than swapping in step 2, the minimum value is inserted into the first position (that is, all intervening items moved down), the algorithm is stable. However, this modification either requires a data structure that supports efficient insertions or deletions, such as a linked list, or it leads to performing Θ("n"2) writes. Either way, it eliminates the main advantage of selection sort over insertion sort, which is always stable.

In the bingo sort variant, items are ordered by repeatedly looking through the remaining items to find the greatest value and moving all items with that value to their final location. Like counting sort, this is an efficient variant if there are many duplicate values. Indeed, selection sort does one pass through the remaining items for each item moved. Bingo sort does two passes for each value (not item): one pass to find the next biggest value, and one pass to move every item with that value to its final location. Thus if on average there are more than two items with each value, bingo sort may be faster. [DADS|Bingo sort|bingosort]

References

* Donald Knuth. "The Art of Computer Programming", Volume 3: "Sorting and Searching", Third Edition. Addison-Wesley, 1997. ISBN 0-201-89685-0. Pages 138&ndash;141 of Section 5.2.3: Sorting by Selection.
* Anany Levitin. "Introduction to the Design & Analysis of Algorithms", 2nd Edition. ISBN 0-321-35828-7. Section 3.1: Selection Sort, pp 98-100.
* Robert Sedgewick (computer scientist). "Algorithms in C++, Parts 1-4: Fundamentals, Data Structure, Sorting, Searching: Fundamentals, Data Structures, Sorting, Searching Pts. 1-4", Second Edition. Addison-Wesley Longman, 1998. ISBN 0201350882. Pages 273&ndash;274

External links

* [http://tide4javascript.com/?s=Selection Analyze Selection Sort in an online JavaScript IDE]
* [http://24bytes.com/selection-sort.html Selection Sort in C++ ]
* [http://www.cs.ust.hk/faculty/tcpong/cs102/summer96/aids/select.html Selection Sort Demo]
* [http://www.cs.queensu.ca/~cisc121/2004f/lecturenotes/malamb/SortingDemos/SelectionSortDemo.html Selection Sort Demo]
* [http://web.engr.oregonstate.edu/~minoura/cs162/javaProgs/sort/SelectSort.html Selection Sort Demonstration]
* Pointers to [http://web-cat.cs.vt.edu/AlgovizWiki/SelectionSort selection sort visualizations]
* [http://www.paked.net/subject_pages/computer_science/prog3.htm C++ Program - Selection Sort ]
* [http://www.datastructures.info/what-is-selection-sort-and-how-does-it-work-selection-sort-algorithm/ Selection sort explained and C++ source code]
* [http://vision.bc.edu/~dmartin/teaching/sorting/anim-html/selection.html A graphical demonstration and discussion of selection sort]
* [http://coderaptors.com/?SelectionSort A colored graphical Java applet] which allows experimentation with initial state and shows statistics


Wikimedia Foundation. 2010.

Игры ⚽ Нужно сделать НИР?

Look at other dictionaries:

  • Selection-Sort — Der Begriff Sortierlese oder Selection Sort (englisch selection »Auswahl«, to sort »sortieren«), auch MinSort (von Minimum) bzw. MaxSort (von Maximum), Selectsort oder ExchangeSort (AustauschSort) genannt, bezeichnet einen naiven… …   Deutsch Wikipedia

  • Selection Sort — Der Begriff Sortierlese oder Selection Sort (englisch selection »Auswahl«, to sort »sortieren«), auch MinSort (von Minimum) bzw. MaxSort (von Maximum), Selectsort oder ExchangeSort (AustauschSort) genannt, bezeichnet einen naiven… …   Deutsch Wikipedia

  • Selection algorithm — In computer science, a selection algorithm is an algorithm for finding the kth smallest number in a list (such a number is called the kth order statistic). This includes the cases of finding the minimum, maximum, and median elements. There are… …   Wikipedia

  • sort through — look at in succession for classification or to make a selection. → sort …   English new terms dictionary

  • Sélection inter-sexe — Sélection intersexuelle La sélection intersexuelle est particulièrement visible au niveau des aires de parade. Chez le Tétras lyre, les mâles se regroupent et paradent dans des tourbières. Les femelles viennent les observer et s accouplent parfoi …   Wikipédia en Français

  • Sélection inter-sexuelle — Sélection intersexuelle La sélection intersexuelle est particulièrement visible au niveau des aires de parade. Chez le Tétras lyre, les mâles se regroupent et paradent dans des tourbières. Les femelles viennent les observer et s accouplent parfoi …   Wikipédia en Français

  • Sélection intersexuelle — La sélection intersexuelle est particulièrement visible au niveau des aires de parade. Chez le Tétras lyre, les mâles se regroupent et paradent dans des tourbières. Les femelles viennent les observer et s accouplent parfois avec l un d entre eux …   Wikipédia en Français

  • sort — noun 1》 a category of people or things with a common feature.     ↘informal a person with a specified nature. 2》 Computing the arrangement of data in a prescribed sequence. 3》 archaic a manner or way. verb 1》 arrange systematically in groups.… …   English new terms dictionary

  • Sélection Arménienne de Football — Équipe d Arménie de football Arménie …   Wikipédia en Français

  • Insertion sort — Infobox Algorithm class=Sorting algorithm data=Array time= О(n²) space= О(n) total, O(1) auxiliary optimal=Not usuallyInsertion sort is a simple sorting algorithm, a comparison sort in which the sorted array (or list) is built one entry at a time …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”