-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathshellSort.js
32 lines (28 loc) · 950 Bytes
/
shellSort.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
25
26
27
28
29
30
31
32
/**
* Shell sort or Shell's method, is an in-place comparison sort. It can be seen as
* either a generalization of sorting by exchange (bubble sort) or sorting by
* insertion (insertion sort). The method starts by sorting pairs of elements
* far apart from each other, then progressively reducing the gap between elements
* to be compared. Starting with far apart elements can move some out-of-place elements
* into position faster than a simple nearest neighbor exchange
*/
function shellSort(arr) {
let increment = arr.length / 2;
while (increment > 0) {
for (i = increment; i < arr.length; i++) {
let j = i;
let temp = arr[i];
while (j >= increment && arr[j-increment] > temp) {
arr[j] = arr[j-increment];
j = j - increment;
}
arr[j] = temp;
}
if (increment == 2) {
increment = 1;
} else {
increment = parseInt(increment*5 / 11);
}
}
return arr;
}