Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
(fun bubbles (vs)
|
||||
(let done? F n (len vs))
|
||||
|
||||
(while (not done?)
|
||||
(set done? T n (- n 1))
|
||||
|
||||
(for (n i)
|
||||
(let x (# vs i) j (+ i 1) y (# vs j))
|
||||
(if (> x y) (set done? F (# vs i) y (# vs j) x))))
|
||||
|
||||
vs)
|
||||
|
||||
(bubbles '(2 1 3))
|
||||
---
|
||||
(1 2 3)
|
||||
Loading…
Add table
Add a link
Reference in a new issue