Skip to main content

Section 7.4 The Selection Sort

The selection sort improves on the bubble sort by making only one exchange for every pass through the first part of the vector. We will call this a step. In order to do this, a selection sort looks for the largest value as it makes a partial pass and, after completing the partial pass, places it in the proper location, ending the step. As with a bubble sort, after the first step, the largest item is in the correct place. After the second step, the next largest is in place. This process continues and requires \(n-1\) steps to sort n items, since the final item must be in place after the \((n-1)\) step.
On each step, the largest remaining item is selected and then placed in its proper location. The first pass places 93, the second pass places 77, the third places 55, and so on. The function is shown in Task 7.4.1.a .

Exploration 7.4.1. Selection Sort.

(a) C++ Implementation.

(b) Python Implementation.

The visualization in Figure 7.4.1 allows you to step through the algorithm. Yellow bars represent the current element, red represents the element being looked at, and blue represents the last element to look at during a step.
Figure 7.4.1. Selection esort animation.
The video in Figure 7.4.2 shows selection sort in action. Each pass compares the bars in sequential order. The smallest bar is selected on each pass and is set as the minimum, represented in orange. Every remaining bar is then compared to the minimum. If the bar is larger, it is represented in blue, if it is smaller, it becomes the new orange bar. After each pass, a counter will increment which bar in our container will start with. This increment is representedby a thin black line falling before the bar to be started at.
Figure 7.4.2. Video of selectionSort in action.
You may see that the selection sort makes the same number of comparisons as the bubble sort and is therefore also \(O(n^{2})\text{.}\) However, due to the reduction in the number of exchanges, the selection sort typically executes faster in benchmark studies.

Reading Questions Reading Questions

1.

    Suppose you have the following vector of numbers to sort: [11, 7, 12, 14, 19, 1, 6, 18, 8, 20] which vector represents the partially sorted (ascending) vector after three steps of selection sort?
  • [7, 11, 12, 1, 6, 14, 8, 18, 19, 20]
  • Selection sort is similar to bubble sort (which you appear to have done) but uses fewer swaps
  • [7, 11, 12, 14, 19, 1, 6, 18, 8, 20]
  • This looks like an insertion sort.
  • [11, 7, 12, 14, 1, 6, 8, 18, 19, 20]
  • This one looks similar to the correct answer, however, it is not how selection sort works. With this answer, instead of swapping values through each sweep, the values have been shifted to the left to make room for the correct numbers.
  • [11, 7, 12, 14, 8, 1, 6, 18, 19, 20]
  • Selection sort improves upon bubble sort by making fewer swaps.
You have attempted of activities on this page.