Selection Sort: Algorithm explained with Python Code Example

What is Selection Sort?

SELECTION SORT is a comparison sorting algorithm that is used to sort a random list of items in ascending order. The comparison does not require a lot of extra space. It only requires one extra memory space for the temporal variable.

This is known as in-place sorting. The selection sort has a time complexity of O(n2) where n is the total number of items in the list. The time complexity measures the number of iterations required to sort the list. The list is divided into two partitions: The first list contains sorted items, while the second list contains unsorted items.

By default, the sorted list is empty, and the unsorted list contains all the elements. The unsorted list is then scanned for the minimum value, which is then placed in the sorted list. This process is repeated until all the values have been compared and sorted.

In this Algorithm tutorial, you will learn:

How does selection sort work?

The first item in the unsorted partition is compared with all the values to the right-hand side to check if it is the minimum value. If it is not the minimum value, then its position is swapped with the minimum value.

Example:

Problem Definition

A list of elements that are in random order needs to be sorted in ascending order. Consider the following list as an example.

[21,6,9,33,3]

The above list should be sorted to produce the following results

[3,6,9,21,33]

Solution (Algorithm)

Step 1) Get the value of n which is the total size of the array

Step 2) Partition the list into sorted and unsorted sections. The sorted section is initially empty while the unsorted section contains the entire list

Step 3) Pick the minimum value from the unpartitioned section and placed it into the sorted section.

Step 4) Repeat the process (n – 1) times until all of the elements in the list have been sorted.

Visual Representation

Given a list of five elements, the following images illustrate how the selection sort algorithm iterates through the values when sorting them.

The following image shows the unsorted list

Step 1)

The first value 21 is compared with the rest of the values to check if it is the minimum value.

3 is the minimum value, so the positions of 21 and 3 are swapped. The values with a green background represent the sorted partition of the list.

Step 2)

The value 6 which is the first element in the unsorted partition is compared with the rest of the values to find out if a lower value exists

The value 6 is the minimum value, so it maintains its position.

Step 3)

The first element of the unsorted list with the value of 9 is compared with the rest of the values to check if it is the minimum value.

The value 9 is the minimum value, so it maintains its position in the sorted partition.

Step 4)

The value 33 is compared with the rest of the values.

The value 21 is lower than 33, so the positions are swapped to produce the above new list.

Step 5)

We only have one value left in the unpartitioned list. Therefore, it is already sorted.

The final list is like the one shown in the above image.

Selection Sort Program using Python 3

The following code shows the selection sort implementation using Python 3

def selectionSort( itemsList ):
    n = len( itemsList )
    for i in range( n - 1 ): 
        minValueIndex = i

        for j in range( i + 1, n ):
            if itemsList[j] < itemsList[minValueIndex] :
                minValueIndex = j

        if minValueIndex != i :
            temp = itemsList[i]
            itemsList[i] = itemsList[minValueIndex]
            itemsList[minValueIndex] = temp

    return itemsList


el = [21,6,9,33,3]

print(selectionSort(el))

Run the above code produces the following results

[3, 6, 9, 21, 33]

Code Explanation

The explanation for the code is as follows

Here is Code explanation:

  1. Defines a function named selectionSort
  2. Gets the total number of elements in the list. We need this to determine the number of passes to be made when comparing values.
  3. Outer loop. Uses the loop to iterate through the values of the list. The number of iterations is (n - 1). The value of n is 5, so (5 - 1) gives us 4. This means the outer iterations will be performed 4 times. In each iteration, the value of the variable i is assigned to the variable minValueIndex
  4. Inner loop. Uses the loop to compare the leftmost value to the other values on the right-hand side. However, the value for j does not start at index 0. It starts at (i + 1). This excludes the values that have already been sorted so that we focus on items that have not yet been sorted.
  5. Finds the minimum value in the unsorted list and places it in its proper position
  6. Updates the value of minValueIndex when the swapping condition is true
  7. Compares the values of index numbers minValueIndex and i to see if they are not equal
  8. The leftmost value is stored in a temporal variable
  9. The lower value from the right-hand side takes the position first position
  10. The value that was stored in the temporal value is stored in the position that was previously held by the minimum value
  11. Returns the sorted list as the function result
  12. Creates a list el that has random numbers
  13. Print the sorted list after calling the selection Sort function passing in el as the parameter.

Time Complexity Of Selection Sort

The sort complexity is used to express the number of execution times it takes to sort the list. The implementation has two loops.

The outer loop which picks the values one by one from the list is executed n times where n is the total number of values in the list.

The inner loop, which compares the value from the outer loop with the rest of the values, is also executed n times where n is the total number of elements in the list.

Therefore, the number of executions is (n * n), which can also be expressed as O(n2).

The selection sort has three categories of complexity namely;

The selection sort has a space complexity of O(1) as it requires one temporal variable used for swapping values.

When to use selection sort?

The selection sort is best used when you want to:

Advantages of Selection Sort

The following are the advantages of the selection sort

Disadvantages of Selection Sort

The following are the disadvantages of the selection sort.

Summary:

 

YOU MIGHT LIKE: