Python DSA
Insertion Sort
Insertion sort algorithm
Insertion Sort
Insertion sort is a simple sorting algorithm that builds the final sorted array one item at a time.
Insertion Sort Implementation
def insertion_sort(arr):
for i in range(1, len(arr)):
key = arr[i]
j = i - 1
while j >= 0 and arr[j] > key:
arr[j + 1] = arr[j]
j -= 1
arr[j + 1] = key
return arr