all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
(de combSort (Lst)
|
||||
(let (Gap (length Lst) Swaps NIL)
|
||||
(while (or (> Gap 1) Swaps)
|
||||
(setq Gap (max 1 (/ (* Gap 4) 5)))
|
||||
(off Swaps)
|
||||
(use Lst
|
||||
(for (G (cdr (nth Lst Gap)) G (cdr G))
|
||||
(when (> (car Lst) (car G))
|
||||
(xchg Lst G)
|
||||
(on Swaps) )
|
||||
(pop 'Lst) ) ) ) )
|
||||
Lst )
|
||||
Loading…
Add table
Add a link
Reference in a new issue