Watch Great Learning’s video on the Insertion Sort Algorithm Using C! Insertion Sort Algorithm is one of the simplest sorting algorithms, very much similar to how one sorts playing cards in their hands. Insertion sort algorithm sorts the items of an array/list one at a time and is a lot less efficient when working with large lists than when advanced algorithms such as heapsort, quicksort or mergesort are used. This sorting algorithm splits the array/list into an unsorted and sorted part, where items are picked from the unsorted part and placed at the right position in the sorted part.
Great Learning brings you this video “Insertion Sort Algorithm”, aimed at helping you understand this specific type of algorithm. This video will help you understand the implementation of Insertion sort algorithms and its analysis. The video will also take you through Insertion sort Time/Space Complexity. Added to this, the video teaches these concepts by carrying out simultaneous demonstrations as well as examples of Insertion sort algorithms.