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.
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.
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.
Similarly, place every unsorted element at its correct position. a) Place 12 behind 85b) Place 59 behind 85 and the array is sorted
Insertion Sort Algorithm
1
2
3
4
5
6
7
8
9
insertionSort(array)
mark first element assorted
foreachunsorted elementX
'extract'the elementX
forj<-lastSortedIndex down to0
ifcurrent elementj>X
move sorted element tothe right by1
breakloop andinsertXhere
endinsertionSort
Python Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Insertion sort in Python
def insertionSort(array):
forstep inrange(1,len(array)):
key=array[step]
j=step-1
# Compare key with each element on the left of it until an element smaller than it is found
# For descending order, change key<array[j] to key>array[j].
whilej>=0andkey<array[j]:
array[j+1]=array[j]
j=j-1
# Place key at after the element just smaller than it.
array[j+1]=key
data=[9,5,1,4,3]
insertionSort(data)
print('Sorted Array in Ascending Order:')
print(data)
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.
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Essential Cookies
Always active
hese cookies are necessary for our website to function properly. They enable core functionalities such as security, network management, and accessibility. Without these cookies, the website may not function correctly.
Performance Cookies
These cookies help us analyze and understand how visitors interact with our website. They collect information such as page visits, time spent on the site, and any error messages encountered. This data is used to improve website functionality and optimize user experience.
Functional Cookies
These cookies allow us to remember your preferences and choices, enhancing your experience on our website. By using these cookies, we ensure a more personalized and convenient browsing experience.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Advertising Cookies
These cookies are used to deliver advertisements that are more relevant to you. They may be set by us or third-party advertising networks, such as Google AdSense.
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Essential Cookies
Always active
hese cookies are necessary for our website to function properly. They enable core functionalities such as security, network management, and accessibility. Without these cookies, the website may not function correctly.
Performance Cookies
These cookies help us analyze and understand how visitors interact with our website. They collect information such as page visits, time spent on the site, and any error messages encountered. This data is used to improve website functionality and optimize user experience.
Functional Cookies
These cookies allow us to remember your preferences and choices, enhancing your experience on our website. By using these cookies, we ensure a more personalized and convenient browsing experience.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Advertising Cookies
These cookies are used to deliver advertisements that are more relevant to you. They may be set by us or third-party advertising networks, such as Google AdSense.
Leave a Comment