Understanding Insertion Sort: A Simple Yet Powerful Sorting Algorithm

Sorting is an essential part of computer science. Among the various sorting algorithms, Insertion Sort stands out due to its simplicity and effectiveness for small datasets. This blog will walk you through the mechanics of Insertion Sort and its implementation.

What is Insertion Sort?

Insertion Sort is a straightforward comparison-based algorithm. It works by dividing the array into two parts:

  • A sorted section (built element by element).

  • An unsorted section.

The algorithm takes elements from the unsorted part one at a time and places them in the correct position in the sorted part.

How Does Insertion Sort Work?

Here’s a step-by-step breakdown:

  1. Start with the second element (since a single element is already "sorted").

  2. Compare this element with those before it in the sorted section.

  3. Shift the larger elements in the sorted section to the right to make room for the current element.

  4. Insert the current element into its correct position.

  5. Repeat this process for all elements in the unsorted section.

Visual Representation of Insertion Sort

Let’s sort the array [5, 3, 8, 6] using Insertion Sort:

  1. Initial Array: [5, 3, 8, 6]
    The first element, 5, is already sorted.

  2. Step 1: Compare 3 with 5.
    Since 3 < 5, shift 5 to the right and place 3 in the first position.
    Array after Step 1: [3, 5, 8, 6]

  3. Step 2: Compare 8 with 5.
    Since 8 > 5, no shifting is needed.
    Array after Step 2: [3, 5, 8, 6]

  4. Step 3: Compare 6 with 8.
    Since 6 < 8, shift 8 to the right.
    Compare 6 with 5. Since 6 > 5, place 6 in its correct position.
    Array after Step 3: [3, 5, 6, 8]

  5. Sorted Array: [3, 5, 6, 8]

InsertionSort(array)
   for i from 1 to array.length - 1
       key = array[i]
       j = i - 1
       while j >= 0 and array[j] > key
           array[j + 1] = array[j]
           j = j - 1
       array[j + 1] = key

Time and Space Complexity

  • Best Case: O(n) – When the array is already sorted.

  • Worst Case: O(n²) – When the array is sorted in reverse order.

  • Space Complexity: O(1) – No additional memory is required.

Why Use Insertion Sort?

  • Simple to Implement: Ideal for educational purposes.

  • Efficient for Small Datasets: Works well when the array size is small.

  • Adaptive: Performs well on nearly sorted data.

When to Avoid Insertion Sort?

For large datasets or when performance is critical, more advanced algorithms like Merge Sort, Quick Sort, or Heap Sort are preferred due to their better time complexity.

Conclusion

Insertion Sort is a simple yet effective sorting algorithm, especially for small datasets or nearly sorted arrays. By understanding its working, you’ll not only appreciate its simplicity but also lay a strong foundation for learning more complex algorithms.

0
Subscribe to my newsletter

Read articles from Aaqib Bashir Mir directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Aaqib Bashir Mir
Aaqib Bashir Mir