all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
|
|
@ -0,0 +1,13 @@
|
|||
(defun gnome-sort (array predicate &aux (length (length array)))
|
||||
(do ((position (min 1 length)))
|
||||
((eql length position) array)
|
||||
(cond
|
||||
((eql 0 position)
|
||||
(incf position))
|
||||
((funcall predicate
|
||||
(aref array position)
|
||||
(aref array (1- position)))
|
||||
(rotatef (aref array position)
|
||||
(aref array (1- position)))
|
||||
(decf position))
|
||||
(t (incf position)))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue