In this article, you will learn the insertion sort in python. To understand this program, you should have knowledge of the following Python Programming topics:

Insertion sort is a popular shorting algorithm, similar to selection sort the unsorted list or array is divided into two parts, the left part being sorted which is initially empty and the right part being unsorted which at the very beginning is the entire list.

At each iteration element from the unsorted list is inserted at the appropriate position in the sorted part. This process continues until the entire list is sorted. Basically, we are iterating over the element of the sorted list until the correct position is found. Since the items of the unsorted part are continuously inserted at appropriate positions in the sorted list therefore named Insertion sort.

Insertion Sort Program In Python

Output: [17, 20, 26, 31, 44, 54, 55, 77, 93]

In the above function outer for loop is iterating over every element of the list from index 0 to the end of the list, the inner while loop swaps the values and inserts them to their appropriate positions this keeps on continuing until the entire list is sorted.

Insertion Sort In Python

The article was published on October 15, 2020 @ 3:55 PM

Leave a Comment