forked from TheAlgorithms/JavaScript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShellSort.js
More file actions
Latest commit
27 lines (24 loc) · 663 Bytes
/
Copy pathShellSort.js
File metadata and controls
27 lines (24 loc) · 663 Bytes
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
/*
* Shell Sort sorts an array based on insertion sort algorithm
* more information: https://en.wikipedia.org/wiki/Shellsort
*
*/
exportfunctionshellSort(items){
letinterval=1
while(interval<items.length/3){
interval=interval*3+1
}
while(interval>0){
for(letouter=interval;outer<items.length;outer++){
constvalue=items[outer]
letinner=outer
while(inner>interval-1&&items[inner-interval]>=value){
items[inner]=items[inner-interval]
inner=inner-interval
}
items[inner]=value
}
interval=(interval-1)/3
}
returnitems
}