Selection Sort

In computer science, 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 it has performance advantages over more complicated algorithms in certain situations, particularly where auxiliary memory is limited. The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right at the front (left) of the list, and the sublist of items remaining to be sorted that occupy the rest of the list. Initially, the sorted sublist is empty and the unsorted sublist is the entire input list. The algorithm proceeds by finding the smallest (or largest, depending on sorting order) element in the unsorted sublist, exchanging (swapping) it with the leftmost unsorted element (putting it in sorted order), and moving the sublist boundaries one element to the right.



Selection Sort Visualization

A[0] A[1] A[2] A[3] A[4] A[5] A[6] A[7] A[8] A[9] A[10]
10 21 12 37 14 59 56 74 80 39 20


      




Trace
  • current=0
  • procedure selection_sort (list)
  •   while(current!=n)
  •      min_index = find_min_index(list,current,n)
  •      if(current!=min_index)
  •        swap(list[current], list[min_index])
  •      end if
  •      current++
  •   end while
  •   return list
  •  end selection_sort procedure




Selection Sort Code in C:

                      
                        #include <stdio.h>
 
                        int main()
                        {
                          int array[100], n, c, d, position, swap;
                         
                          printf("Enter number of elements\n");
                          scanf("%d", &n);
                         
                          printf("Enter %d integers\n", n);
                         
                          for (c = 0; c < n; c++)
                            scanf("%d", &array[c]);
                         
                          for (c = 0; c < (n - 1); c++)
                          {
                            position = c;
                           
                            for (d = c + 1; d < n; d++)
                            {
                              if (array[position] > array[d])
                                position = d;
                            }
                            if (position != c)
                            {
                              swap = array[c];
                              array[c] = array[position];
                              array[position] = swap;
                            }
                          }
                         
                          printf("Sorted list in ascending order:\n");
                         
                          for (c = 0; c < n; c++)
                            printf("%d\n", array[c]);
                         
                          return 0;
                        }