Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Sorting

Name: Anonymous 2009-04-20 16:19

Does anyone have a program that sorts alphabetically. What type of sort does it do? I'm trying to collect different alphabetical sorts to benchmark them.

Name: Anonymous 2011-01-06 15:34

(defun sort-strings (&rest strings) (sort strings #'string<))

(sort-strings "vip" "quality" "c" "cdr" "car" "cudder")
("c" "car" "cdr" "cudder" "quality" "vip")

Name: Anonymous 2011-01-06 16:01

(define (sort-strings . strings) (sort strings string<?))

(sort-strings "vip" "quality" "c" "cdr" "car" "cudder")
'("c" "car" "cdr" "cudder" "quality" "vip")

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List