5.9. The Insertion SortΒΆ
The insertion sort, although still

Figure 4: Insertion Sort: CompleteΒΆ
We begin by assuming that a list with one item (position
Figure 5 shows the fifth pass in detail. At this point in the algorithm, here is a sorted sublist of five items: 17, 26, 54, 77, and 93. We want to insert 31 back into the already sorted items. The first comparison against 93 causes 93 to be shifted to the right. 77 and 54 are also shifted. When the item 26 is encountered, the shifting process stops and 31 is placed in the open position. Now we have a sorted sublist of six items.

Figure 5: Insertion Sort: Fifth Pass of the SortΒΆ
The implementation of insertion_sort
(ActiveCode 1) shows that
there are again
The maximum number of comparisons for an insertion sort is the sum of
the first
One note about shifting versus exchanging is also important. In general, a shift operation requires approximately a third of the processing work of an exchange since only one assignment is performed. In benchmark studies, insertion sort will show very good performance.
Self Check
- Q-3: Suppose you have the following list of numbers to sort: <br>
[15, 5, 4, 18, 12, 19, 14, 10, 8, 20] which list represents the partially sorted list after three complete passes of insertion sort?
- [4, 5, 12, 15, 14, 10, 8, 18, 19, 20]
- This is a bubble sort.
- [15, 5, 4, 10, 12, 8, 14, 18, 19, 20]
- This is the result of selection sort.
- [4, 5, 15, 18, 12, 19, 14, 10, 8, 20]
- Insertion sort works at the start of the list. Each pass produces a longer sorted list.
- [15, 5, 4, 18, 12, 19, 14, 8, 10, 20]
- Insertion sort works on the front of the list not the end.