Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
/** Shell sort (in-place) */
|
||||
def shellSort(array) {
|
||||
var inc := array.size() // 2
|
||||
while (inc.aboveZero()) {
|
||||
for var i => a in array {
|
||||
while (i >= inc && (def b := array[i - inc]) > a) {
|
||||
array[i] := b
|
||||
i -= inc
|
||||
}
|
||||
array[i] := a
|
||||
}
|
||||
inc := if (inc <=> 2) { 1 } else { (inc * 5.0 / 11).floor() }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue