home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume10
/
ifp
/
part01
/
fproot
/
demo
/
SelSort
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1987-07-05
|
336 b
|
20 lines
(*
* Selection sort
*
* Example:
*
* <3 1 4 1 5 9 2> : SelSort == <1 1 2 3 4 5 9>
*
* The sequence must be numeric.
*)
DEF SelSort AS
IF [length,#2] | < THEN id
ELSE
[INSERT min END,id] | distl |
[
FILTER = END | EACH 2 END,
FILTER ~= END | EACH 2 END | SelSort
] | cat
END;