I wrote a quick-sort in scheme (racket)
#lang racket
(define (quick-sort xs)
(let* ([p (list-ref xs 0)]
[tail (list-tail xs 1)]
[less (filter (lambda (x) (< x p)) tail)]
[greater (filter (lambda (x) (>= x p)) tail)])
(append (quick-sort less) (list p) (quick-sort greater))))
But when I tried it I got this error:
> (quick-sort (list 99 2 9922))
list-ref: index 0 too large for list: '()
I'm new to scheme so I don't quite understand why list-ref can't get the correct input '(99 2 9922)
Edit:
Thanks. I made it work.
#lang racket
(define (quick-sort xs)
(let* ([p (first xs)]
[tail (rest xs)]
[less (filter (lambda (x) (< x p)) tail)]
[greater (filter (lambda (x) (>= x p)) tail)])
(if (equal? (length xs) 1)
xs
(append (quick-sort less) (list p) (quick-sort greater)))))
(equal? (length xs) 1)is tested on every input, and it always computes the entire length of xs (a linear operation). Since you don't care what the length is, except if it's 1, you can use a constant-time test like(and (not (null? xs)) (null? (cdr xs))). (The snippet I suggest asserts that the list isn't empty, and that the part after the first element is empty. The latter obviously implies a length of 1, but will cause an error unless the list is non-empty, hence the first condition.) – Carlo Jul 29 '11 at 6:56