Selection sort
From Wikipedia, the free encyclopedia
Jump to: navigation, search
                   Selection sort




Class                      Sorting algorithm
Data structure             Array
Worst case performance     О(n2)
Best case performance      О(n2)
Average case performance   О(n2)
Worst case space           О(n) total, O(1)
complexity                 auxiliary
Selection Sort Animation

In computer science, a Selection sort is a sorting algorithm, specifically an in-place
comparison sort. It has O(n2) time 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, particularly where auxiliary memory is limited.

Contents
[hide]

   •     1 Algorithm
   •     2 Mathematical definition
   •     3 Analysis
   •     4 Comparison to other sorting algorithms
   •     5 Variants
   •     6 References

   •     7 External links

[edit] Algorithm
The algorithm works as follows:
1. Find the minimum value in the list
   2. Swap it with the value in the first position
   3. Repeat the steps above for the remainder of the list (starting at the second position
      and advancing each time)

Effectively, the list is divided into two parts: the sublist of items already sorted, which is
built 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 11

11 25 12 22 64

11 12 25 22 64

11 12 22 25 64

11 12 22 25 64

(nothing appears changed on this last line because the last 2 numbers were already in
order)

Selection sort can also be used on list structures that make add and remove efficient, such
as a linked list. In this case it is 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 11

11 64 25 12 22

11 12 64 25 22

11 12 22 64 25

11 12 22 25 64
/* a[0] to a[n-1] is the array to sort */
int iPos;
int iMin;

/* advance the position through the entire array */
/*   (could do iPos < n-1 because single element is also min element) */
for (iPos = 0; iPos < n; iPos++) {
    /* find the min element in the unsorted a[iPos .. n-1] */

     /* assume the min is the first element */
     iMin = iPos;
     /* test against all other elements */
     for (int i = iPos+1; i < n; i++) {
         /* if this element is less, then it is the new minimum */
         if (a[i] < a[iMin]) {
/* found new minimum; remember its index */
                   iMin = i;
              }
       }

    /* iMin is the index of the minimum element. Swap it with the
current position */
    if ( iMin != iPos ) {
        swap(a, iPos, iMin);
    }
}


[edit] Mathematical definition
Let        be a non-empty set and                such that             where:

      1.      is a permutation of    ,
      2.               for all           and      ,


      3.                                                     ,
      4.     is the smallest element of    , and
      5.       is the set of elements of   without one instance of the smallest element of   .

[edit] 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 ∈ Θ(n2) comparisons (see
arithmetic progression). Each of these scans requires one swap for n − 1 elements (the
final element is already in place).

[edit] Comparison to other sorting algorithms
Among simple average-case Θ(n2) algorithms, selection sort almost always outperforms
bubble sort and gnome sort, but is generally outperformed by insertion sort. Insertion sort
is very similar in that after the kth 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."

While selection sort is preferable to insertion sort in terms of number of writes (Θ(n)
swaps versus Ο(n2) swaps), it almost always far exceeds (and never beats) the number of
writes that cycle sort makes, as cycle sort is theoretically optimal in the number of writes.
This can be important if writes are significantly more expensive than reads, such as with
EEPROM or Flash memory, where every write lessens the lifespan of the memory.

Finally, selection sort is greatly outperformed on larger arrays by Θ(n log n) divide-and-
conquer algorithms such as 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.

[edit] 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 Θ(n2) writes.

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.[1] 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 one pass for each value (not item): after an initial pass to find the
biggest value, the next passes can move every item with that value to its final location
while finding the next value as in the following pseudocode (arrays are zero-based and
the for-loop includes both the top and bottom limits, as in Pascal):

bingo(array A)
{ This procedure sorts in ascending order. }
begin
    max := length(A)-1;

    { The first iteration is written to look very similar to the
subsequent ones, but
      without swaps. }
    nextValue := A[max];
    for i := max - 1 downto 0 do
        if A[i] > nextValue then
            nextValue := A[i];
    while (max > 0) and (A[max] = nextValue) do
        max := max - 1;

    while max > 0 do begin
         value := nextValue;
         nextValue := A[max];
         for i := max - 1 downto 0 do
              if A[i] = value then begin
                  swap(A[i], A[max]);
                  max := max - 1;
              end else if A[i] > nextValue then
                  nextValue := A[i];
         while (max > 0) and (A[max] = nextValue) do
             max := max - 1;
    end;
end;

More Related Content

PPTX
Selection sort
PPT
Selection sort
PPTX
Selection sort
DOC
Insertion sort
PPTX
Java presentation on insertion sort
PPTX
The selection sort algorithm
PPTX
Insertion sort
PPTX
Sorting algorithms
Selection sort
Selection sort
Selection sort
Insertion sort
Java presentation on insertion sort
The selection sort algorithm
Insertion sort
Sorting algorithms

What's hot (20)

PPTX
Selection sort
PPTX
Searching & Sorting Algorithms
PPT
Data Structures- Part4 basic sorting algorithms
PPT
Sorting techniques
DOCX
Sorting
PPTX
Selection sorting
PPTX
Sorting Algorithms
PPTX
Selection sort 1
PPT
Sorting Techniques
PPTX
Insertion Sorting
PPT
Sorting Algorithms
PPTX
Sorting algorithms
PPT
Hub 102 - Lesson 5 - Algorithm: Sorting & Searching
PPT
Searching Sorting
PPTX
Basic Sorting algorithms csharp
PPT
Shell sorting
 
PDF
Selection sort
PDF
Sorting
PPT
SEARCHING AND SORTING ALGORITHMS
PPTX
Sorting (Bubble,Merge,Selection sort)
Selection sort
Searching & Sorting Algorithms
Data Structures- Part4 basic sorting algorithms
Sorting techniques
Sorting
Selection sorting
Sorting Algorithms
Selection sort 1
Sorting Techniques
Insertion Sorting
Sorting Algorithms
Sorting algorithms
Hub 102 - Lesson 5 - Algorithm: Sorting & Searching
Searching Sorting
Basic Sorting algorithms csharp
Shell sorting
 
Selection sort
Sorting
SEARCHING AND SORTING ALGORITHMS
Sorting (Bubble,Merge,Selection sort)
Ad

Viewers also liked (20)

PPT
3.4 selection sort
PPTX
Bubble Sort
PDF
Selection Sort
PPT
Selection sort
PPT
Linear Search & Binary Search
PPTX
Insertion sort
PPT
Quick Sort
PDF
Linear search algorithm
PPTX
Linear Search Data Structure
PPT
Sorting
PPT
Algorithm: Quick-Sort
PPT
Chapter 11 - Sorting and Searching
PPTX
Insertion sort
PDF
Bubblesort Algorithm
PPTX
Binary search
PDF
Binary Search - Design & Analysis of Algorithms
PPT
3.1 bubble sort
PDF
Quick Sort , Merge Sort , Heap Sort
PPTX
Sorting algorithms
PPT
Merge sort
3.4 selection sort
Bubble Sort
Selection Sort
Selection sort
Linear Search & Binary Search
Insertion sort
Quick Sort
Linear search algorithm
Linear Search Data Structure
Sorting
Algorithm: Quick-Sort
Chapter 11 - Sorting and Searching
Insertion sort
Bubblesort Algorithm
Binary search
Binary Search - Design & Analysis of Algorithms
3.1 bubble sort
Quick Sort , Merge Sort , Heap Sort
Sorting algorithms
Merge sort
Ad

Similar to Selection sort (20)

PPTX
Selection-sort-in-algorithm and complexity.pptx
PDF
Searching and Sorting in Data Structures with examples
PDF
Selection Sort with Improved Asymptotic Time Bounds
PPTX
Different Searching and Sorting Methods.pptx
PPT
358 33 powerpoint-slides_14-sorting_chapter-14
PPT
Sorting algorithums > Data Structures & Algorithums
DOCX
Selection sort lab mannual
PPTX
searching in data structure.pptx
PPTX
Unit vii sorting
PPT
Sorting algorithms
PDF
L 14-ct1120
PPTX
Sorting method data structure
PPTX
Sorting Algorithms to arrange data in particular format
PPTX
2.Problem Solving Techniques and Data Structures.pptx
PDF
Sorting algorithms bubble sort to merge sort.pdf
PPT
Data Structure (MC501)
PPTX
AJisthewewrtyuiojhghfdfsgvhjhklopi87ytrytfghjk
PPTX
Unit 7 sorting
PPTX
Data Structure and algorithms for software
PPT
SIMPLE SORTING MUKUND
Selection-sort-in-algorithm and complexity.pptx
Searching and Sorting in Data Structures with examples
Selection Sort with Improved Asymptotic Time Bounds
Different Searching and Sorting Methods.pptx
358 33 powerpoint-slides_14-sorting_chapter-14
Sorting algorithums > Data Structures & Algorithums
Selection sort lab mannual
searching in data structure.pptx
Unit vii sorting
Sorting algorithms
L 14-ct1120
Sorting method data structure
Sorting Algorithms to arrange data in particular format
2.Problem Solving Techniques and Data Structures.pptx
Sorting algorithms bubble sort to merge sort.pdf
Data Structure (MC501)
AJisthewewrtyuiojhghfdfsgvhjhklopi87ytrytfghjk
Unit 7 sorting
Data Structure and algorithms for software
SIMPLE SORTING MUKUND

Recently uploaded (20)

PDF
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
PDF
Comparative analysis of machine learning models for fake news detection in so...
PDF
“A New Era of 3D Sensing: Transforming Industries and Creating Opportunities,...
PPT
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
DOCX
search engine optimization ppt fir known well about this
PPTX
Build Your First AI Agent with UiPath.pptx
PPTX
Custom Battery Pack Design Considerations for Performance and Safety
PDF
Transform-Your-Factory-with-AI-Driven-Quality-Engineering.pdf
PDF
NewMind AI Weekly Chronicles – August ’25 Week IV
PPTX
Configure Apache Mutual Authentication
PDF
Convolutional neural network based encoder-decoder for efficient real-time ob...
PDF
Improvisation in detection of pomegranate leaf disease using transfer learni...
DOCX
Basics of Cloud Computing - Cloud Ecosystem
PDF
STKI Israel Market Study 2025 version august
PDF
Transform-Your-Supply-Chain-with-AI-Driven-Quality-Engineering.pdf
PDF
Transform-Your-Streaming-Platform-with-AI-Driven-Quality-Engineering.pdf
PPTX
Training Program for knowledge in solar cell and solar industry
PDF
Five Habits of High-Impact Board Members
PDF
CloudStack 4.21: First Look Webinar slides
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
5-Ways-AI-is-Revolutionizing-Telecom-Quality-Engineering.pdf
Comparative analysis of machine learning models for fake news detection in so...
“A New Era of 3D Sensing: Transforming Industries and Creating Opportunities,...
Galois Field Theory of Risk: A Perspective, Protocol, and Mathematical Backgr...
search engine optimization ppt fir known well about this
Build Your First AI Agent with UiPath.pptx
Custom Battery Pack Design Considerations for Performance and Safety
Transform-Your-Factory-with-AI-Driven-Quality-Engineering.pdf
NewMind AI Weekly Chronicles – August ’25 Week IV
Configure Apache Mutual Authentication
Convolutional neural network based encoder-decoder for efficient real-time ob...
Improvisation in detection of pomegranate leaf disease using transfer learni...
Basics of Cloud Computing - Cloud Ecosystem
STKI Israel Market Study 2025 version august
Transform-Your-Supply-Chain-with-AI-Driven-Quality-Engineering.pdf
Transform-Your-Streaming-Platform-with-AI-Driven-Quality-Engineering.pdf
Training Program for knowledge in solar cell and solar industry
Five Habits of High-Impact Board Members
CloudStack 4.21: First Look Webinar slides
NewMind AI Weekly Chronicles – August ’25 Week III

Selection sort

  • 1. Selection sort From Wikipedia, the free encyclopedia Jump to: navigation, search Selection sort Class Sorting algorithm Data structure Array Worst case performance О(n2) Best case performance О(n2) Average case performance О(n2) Worst case space О(n) total, O(1) complexity auxiliary
  • 2. Selection Sort Animation In computer science, a Selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O(n2) time 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, particularly where auxiliary memory is limited. Contents [hide] • 1 Algorithm • 2 Mathematical definition • 3 Analysis • 4 Comparison to other sorting algorithms • 5 Variants • 6 References • 7 External links [edit] Algorithm The algorithm works as follows:
  • 3. 1. Find the minimum value in the list 2. Swap it with the value in the first position 3. Repeat the steps above for the remainder of the list (starting at the second position and advancing each time) Effectively, the list is divided into two parts: the sublist of items already sorted, which is built 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 11 11 25 12 22 64 11 12 25 22 64 11 12 22 25 64 11 12 22 25 64 (nothing appears changed on this last line because the last 2 numbers were already in order) Selection sort can also be used on list structures that make add and remove efficient, such as a linked list. In this case it is 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 11 11 64 25 12 22 11 12 64 25 22 11 12 22 64 25 11 12 22 25 64 /* a[0] to a[n-1] is the array to sort */ int iPos; int iMin; /* advance the position through the entire array */ /* (could do iPos < n-1 because single element is also min element) */ for (iPos = 0; iPos < n; iPos++) { /* find the min element in the unsorted a[iPos .. n-1] */ /* assume the min is the first element */ iMin = iPos; /* test against all other elements */ for (int i = iPos+1; i < n; i++) { /* if this element is less, then it is the new minimum */ if (a[i] < a[iMin]) {
  • 4. /* found new minimum; remember its index */ iMin = i; } } /* iMin is the index of the minimum element. Swap it with the current position */ if ( iMin != iPos ) { swap(a, iPos, iMin); } } [edit] Mathematical definition Let be a non-empty set and such that where: 1. is a permutation of , 2. for all and , 3. , 4. is the smallest element of , and 5. is the set of elements of without one instance of the smallest element of . [edit] 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 ∈ Θ(n2) comparisons (see arithmetic progression). Each of these scans requires one swap for n − 1 elements (the final element is already in place). [edit] Comparison to other sorting algorithms Among simple average-case Θ(n2) algorithms, selection sort almost always outperforms bubble sort and gnome sort, but is generally outperformed by insertion sort. Insertion sort is very similar in that after the kth 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
  • 5. 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." While selection sort is preferable to insertion sort in terms of number of writes (Θ(n) swaps versus Ο(n2) swaps), it almost always far exceeds (and never beats) the number of writes that cycle sort makes, as cycle sort is theoretically optimal in the number of writes. This can be important if writes are significantly more expensive than reads, such as with EEPROM or Flash memory, where every write lessens the lifespan of the memory. Finally, selection sort is greatly outperformed on larger arrays by Θ(n log n) divide-and- conquer algorithms such as 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. [edit] 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 Θ(n2) writes. 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.[1] 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 one pass for each value (not item): after an initial pass to find the biggest value, the next passes can move every item with that value to its final location while finding the next value as in the following pseudocode (arrays are zero-based and the for-loop includes both the top and bottom limits, as in Pascal): bingo(array A)
  • 6. { This procedure sorts in ascending order. } begin max := length(A)-1; { The first iteration is written to look very similar to the subsequent ones, but without swaps. } nextValue := A[max]; for i := max - 1 downto 0 do if A[i] > nextValue then nextValue := A[i]; while (max > 0) and (A[max] = nextValue) do max := max - 1; while max > 0 do begin value := nextValue; nextValue := A[max]; for i := max - 1 downto 0 do if A[i] = value then begin swap(A[i], A[max]); max := max - 1; end else if A[i] > nextValue then nextValue := A[i]; while (max > 0) and (A[max] = nextValue) do max := max - 1; end; end;