Insertion Sort
What is Insertion Sort?
Insertion sort is good for collections that are very small or nearly sorted. Otherwise, it’s not a good sorting algorithm it moves data around too much.
Each time insertion is made, all elements in a greater position are shifted.
It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort, or merge sort.
Advantages of Insertion Sort
Simple implementation.
Much More Efficient for small data sets, much like other quadratic sorting algorithms like bubble sort and selection sort.
Adaptive that is efficient for the type of data sets that are already substantially sorted.
Stable Sorting Algorithm
In-place sorting means O(1) space required.
Define Insertion Sort Function
Now, let’s define a new function named insertion-sort which accepts one parameter which is list we pass as n argument to this function.
So what we are going to do is to use two for loops, one starting from index 1 and another loop inside the first loop from the previous element of the list up to index 0.
Then we compare the outer loop index value with the inner loop index value for each iteration and then swap the small one with the outer index element.
Complexity
Insertion sort has a worst-case and average complexity of О(n2), where n is the number of items being sorted.
Most practical sorting algorithms have substantially better worst-case or average complexity, often O(n log n).
When the list is already sorted (best-case), the complexity of the insertion is only O(n).
Define Main Condition
Now, let’s create a main condition where we need to call the above function and pass the list which needs to be sorted.
So let’s manually defined the list which we want to pass as an argument to the function.
Source Code
Output
Last updated