In this tutorial, you will learn how the insertion sort algorithm works. Also, you will find working examples of insertion sort in Python. Before we get started, if you want to about the bubble sort algorithm, please go through the article.

Introduction to Insertion Sort Algorithm

The insertion sort algorithm works similarly as we sort cards in our hand in a card game. We assume that the first card is already sorted then, we select an unsorted card. If the unsorted card is greater than the card in hand, it is placed on the right otherwise, to the left. In the same way, other unsorted cards are taken and put in the right place. A similar approach is used by insertion sort. Insertion sort is a sorting algorithm that places an unsorted element at its suitable place in each iteration.

How does the Insertion Sort Algorithm work?

Suppose we need to sort the following array.

  1. The first element in the array is assumed to be sorted. Take the second element and store it separately in key. Compare the key with the first element. If the first element is greater than, then the key is placed in front of the first element. If the first element is greater than the key, then the key is placed in front of the first element.
  2. Now, the first two elements are sorted. Take the third element and compare it with the elements on the left of it. Placed it just behind the element smaller than it. If there is no element smaller than it, then place it at the beginning of the array.
  3. Similarly, place every unsorted element at its correct position.
    a) Place 12 behind 85
    b) Place 59 behind 85 and the array is sorted

Insertion Sort Algorithm

Python Examples

Complexity

Time Complexities
  • Worst Case Complexity: O(n2)
    Suppose, an array is in ascending order, and you want to sort it in descending order. In this case, the worst-case complexity occurs. Each element has to be compared with each of the other elements so, for every nth element, (n-1) a number of comparisons are made. Thus, the total number of comparisons = n*(n-1) ~ n2
  • Best Case Complexity: O(n)
    When the array is already sorted, the outer loop runs for n number of times whereas the inner loop does not run at all. So, there is only n number of comparisons. Thus, complexity is linear.
  • Average Case Complexity: O(n2)
    It occurs when the elements of an array are in jumbled order (neither ascending nor descending).
Space Complexity
  • Space complexity is O(1) because an extra variable key is used.

Insertion Sort Applications

The insertion sort is used when:

  • the array has a small number of elements
  • there are only a few elements left to be sorted

The article was published on November 28, 2020 @ 2:41 PM

Leave a Comment