-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertion-sort.js
24 lines (19 loc) · 1.06 KB
/
insertion-sort.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* Algorithms: Implement Insertion Sort
* The next sorting method we'll look at is insertion sort. This method works by building up a sorted array at the beginning of the list. It begins the sorted array with the first element. Then it inspects the next element and swaps it backwards into the sorted array until it is in sorted position. It continues iterating through the list and swapping new items backwards into the sorted portion until it reaches the end. This algorithm has quadratic time complexity in the average and worst cases.
*
* Instructions: Write a function insertionSort which takes an array of integers as input and returns an array of these integers in sorted order from least to greatest.
*/
function insertionSort(array) {
for (let i = 1, l = array.length; i < l; i++) {
const val = array[i];
let j = i - 1;
while (j >= 0 && array[j] > val) {
array[j + 1] = array[j];
j--;
}
array[j + 1] = val;
}
return array;
}
console.log(insertionSort([1, 4, 2, 8, 345, 123, 43, 32, 5643, 63, 123, 43, 2, 55, 1, 234, 92]));