-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInsertionSort.js
More file actions
35 lines (31 loc) · 1.39 KB
/
Copy pathInsertionSort.js
File metadata and controls
35 lines (31 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// https://learn.freecodecamp.org/coding-interview-prep/algorithms/implement-insertion-sort
// 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 Logger(number, result) {
console.log(`#${number} : ${JSON.stringify(result)}`);
}
function insertionSort(array) {
// change code below this line
for (let i = 1; i < array.length; i++) {
for (let j = 0; j < i; j++) {
if (array[j] > array[i]) {
const temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}
}
// change code above this line
return array;
}
// test array:
Logger(1, insertionSort([1, 4, 2, 8, 345, 123, 43, 32, 5643, 63, 123, 43, 2, 55, 1, 234, 92]));