Insertion Sort
Grasp the method of insertion sort for organizing data with a straightforward, incremental approach.
Published At
6/4/2021
Reading Time
~ 2 min read
Write a function that takes in an array of integers and returns a sorted version of that array. Use the Insertion Sort algorithm to sort the array.
If you're unfamiliar with Insertion Sort, we recommend watching the Conceptual Overview section of this question's video explanation before starting to code.
Sample Input
array = [8, 5, 2, 9, 5, 6, 3]
array = [8, 5, 2, 9, 5, 6, 3]
Sample Output
[2, 3, 5, 5, 6, 8, 9]
[2, 3, 5, 5, 6, 8, 9]
Hints
Hint 1
Divide the input array into two subarrays in place. The first subarray should be sorted at all times and should start with a length of 1, while the second subarray should be unsorted. Iterate through the unsorted subarray, inserting all of its elements into the sorted subarray in the correct position by swapping them into place. Eventually, the entire array will be sorted.
Optimal Space & Time Complexity
Best: O(n) time | O(1) space - where n is the length of the input array Average: O(n^2) time | O(1) space - where n is the length of the input array Worst: O(n^2) time | O(1) space - where n is the length of the input array
function insertionSort(array) {
for (let i = 1; i < array.length; i++) {
let counter = i
while (counter >= 0 && array[counter] < array[counter - 1]) {
let temp = array[counter]
array[counter] = array[counter - 1]
array[counter - 1] = temp
counter--;
}
}
return array
}
function insertionSort(array) {
for (let i = 1; i < array.length; i++) {
let counter = i
while (counter >= 0 && array[counter] < array[counter - 1]) {
let temp = array[counter]
array[counter] = array[counter - 1]
array[counter - 1] = temp
counter--;
}
}
return array
}
🦔
Do you have any questions, or simply wish to contact me privately? Don't hesitate to shoot me a DM on Twitter.
Have a wonderful day.
Abhishek 🙏