Title

Sorting and Merging

Author

Aubrey Jaffer

Status

This SRFI is currently in ``draft'' status. To see an explanation of each status that a SRFI can hold, see here. To provide input on this SRFI, please mail to <srfi-95@srfi.schemers.org>. See instructions here to subscribe to the list. You can access previous messages via the archive of the mailing list.

Abstract

Sorting and Merging are useful operations deserving a common API.

Issues

Rationale

When SRFI 32 Sort Libraries was withdrawn, it had 28 procedures for what should have been a clean, simple interface. These 28 arose for several reasons: This SRFI's sort procedures operate on lists and arrays, which includes vectors; the merge procedures operate on lists.

SRFI 32's vector routines took optional arguments to restrict their operations to a subrange of the vector. Subranges of SRFI 63 vectors and arrays (using make-shared-array or SLIB's subarray) eliminate the need for these optional arguments.

The present SRFI procedures take a single optional key procedure equivalent to Common-Lisp's &KEY argument.

Specification

These procedures are stable when called with predicates which return #f when applied to identical arguments. These procedures have asymptotic time and space needs no larger than O(N*log(N)), where N is the sum of the lengths of the sequence arguments.

All five functions take an optional key argument corresponding to a CL-style `&key' argument. A less? predicate with a key argument behaves like:

(lambda (x y) (less? (key x) (key y)))

The `!' variants sort in place; sort! returns its sequence argument.

Function: sorted? sequence less?
Function: sorted? sequence less? key
Returns #t when the sequence argument is in non-decreasing order according to less? (that is, there is no adjacent pair ... x y ... for which (less? y x)).

Returns #f when the sequence contains at least one out-of-order pair. It is an error if the sequence is not a list or array (including vectors and strings).

Function: merge list1 list2 less?
Function: merge list1 list2 less? key
Merges two sorted lists, returning a freshly allocated list as its result.

Function: merge! list1 list2 less?
Function: merge! list1 list2 less? key
Merges two sorted lists, re-using the pairs of list1 and list2 to build the result. If merge! is compiled, then no new pairs will be allocated. The first pair of the result will be either the first pair of list1 or the first pair of list2.

Function: sort sequence less?
Function: sort sequence less? key
Accepts a list or array (including vectors and strings) for sequence; and returns a completely new sequence which is sorted according to less?. The returned sequence is the same type as the argument sequence. Given valid arguments, it is always the case that:
(sorted? (sort sequence less?) less?) => #t

Function: sort! sequence less?
Function: sort! sequence less? key
Returns sequence which has been mutated to order its elements according to less?. If the argument sequence is a list and sort! is compiled, then no new pairs will be allocated. If the argument sequence is an array (including vectors and strings), then the sorted elements are returned in the array sequence.

Implementation

slib/sort.scm implements procedures for R4RS or R5RS compliant Scheme implementations with arrays as implemented by slib/array.scm or SRFI 63.

;;; "sort.scm" Defines: sorted?, merge, merge!, sort, sort!
;;; Author : Richard A. O'Keefe (based on Prolog code by D.H.D.Warren)
;;;
;;; This code is in the public domain.

;;; Updated: 11 June 1991
;;; Modified for scheme library: Aubrey Jaffer 19 Sept. 1991
;;; Updated: 19 June 1995
;;; (sort, sort!, sorted?): Generalized to strings by jaffer: 2003-09-09
;;; (sort, sort!, sorted?): Generalized to arrays by jaffer: 2003-10-04
;;; jaffer: 2006-10-08:
;;; (sort, sort!, sorted?, merge, merge!): Added optional KEY argument.

(require 'array)

(define (rank-1-array->list array)
  (define dimensions (array-dimensions array))
  (do ((idx (+ -1 (car dimensions)) (+ -1 idx))
       (lst '() (cons (array-ref array idx) lst)))
      ((< idx 0) lst)))

(define (sort:make-predicate caller less? opt-key)
  (case (length opt-key)
    ((0) less?)
    ((1) (let ((key (car opt-key)))
           (lambda (a b) (less? (key a) (key b)))))
    (else (slib:error caller 'too-many-args (cdr opt-key)))))

;;; (sorted? sequence less?)
;;; is true when sequence is a list (x0 x1 ... xm) or a vector #(x0 ... xm)
;;; such that for all 1 <= i <= m,
;;;     (not (less? (list-ref list i) (list-ref list (- i 1)))).
;@
(define (sorted? seq less? . opt-key)
  (set! less? (sort:make-predicate 'sorted? less? opt-key))
  (cond ((null? seq) #t)
        ((array? seq)
         (let ((dims (array-dimensions seq)))
           (define dimax (+ -1 (car dims)))
           (or (<= dimax 0)
               (do ((i 1 (+ i 1)))
                   ((or (= i dimax)
                        (less? (array-ref seq i)
                               (array-ref seq (- i 1))))
                    (= i dimax))))))
        (else
         (let loop ((last (car seq)) (next (cdr seq)))
           (or (null? next)
               (and (not (less? (car next) last))
                    (loop (car next) (cdr next))))))))

;;; (merge a b less?)
;;; takes two lists a and b such that (sorted? a less?) and (sorted? b less?)
;;; and returns a new list in which the elements of a and b have been stably
;;; interleaved so that (sorted? (merge a b less?) less?).
;;; Note:  this does _not_ accept arrays.  See below.
;@
(define (merge a b less? . opt-key)
  (set! less? (sort:make-predicate 'merge less? opt-key))
  (cond ((null? a) b)
        ((null? b) a)
        (else (let loop ((x (car a)) (a (cdr a)) (y (car b)) (b (cdr b)))
                ;; The loop handles the merging of non-empty lists.  It has
                ;; been written this way to save testing and car/cdring.
                (if (less? y x)
                    (if (null? b)
                        (cons y (cons x a))
                        (cons y (loop x a (car b) (cdr b))))
                    ;; x <= y
                    (if (null? a)
                        (cons x (cons y b))
                        (cons x (loop (car a) (cdr a) y b))))))))

(define (sort:merge! a b less?)
  (define (loop r a b)
    (if (less? (car b) (car a))
        (begin
          (set-cdr! r b)
          (if (null? (cdr b))
              (set-cdr! b a)
              (loop b a (cdr b))))
        ;; (car a) <= (car b)
        (begin
          (set-cdr! r a)
          (if (null? (cdr a))
              (set-cdr! a b)
              (loop a (cdr a) b)))))
  (cond ((null? a) b)
        ((null? b) a)
        ((less? (car b) (car a))
         (if (null? (cdr b))
             (set-cdr! b a)
             (loop b a (cdr b)))
         b)
        (else                           ; (car a) <= (car b)
         (if (null? (cdr a))
             (set-cdr! a b)
             (loop a (cdr a) b))
         a)))

;;; (merge! a b less?)
;;; takes two sorted lists a and b and smashes their cdr fields to form a
;;; single sorted list including the elements of both.
;;; Note:  this does _not_ accept arrays.
;@
(define (merge! a b less? . opt-key)
  (sort:merge! a b (sort:make-predicate 'merge! less? opt-key)))

(define (sort:sort! seq less?)
  (define (step n)
    (cond ((> n 2)
           (let* ((j (quotient n 2))
                  (a (step j))
                  (k (- n j))
                  (b (step k)))
             (sort:merge! a b less?)))
          ((= n 2)
           (let ((x (car seq))
                 (y (cadr seq))
                 (p seq))
             (set! seq (cddr seq))
             (cond ((less? y x)
                    (set-car! p y)
                    (set-car! (cdr p) x)))
             (set-cdr! (cdr p) '())
             p))
          ((= n 1)
           (let ((p seq))
             (set! seq (cdr seq))
             (set-cdr! p '())
             p))
          (else
           '())))
  (cond ((array? seq)
         (let ((dims (array-dimensions seq))
               (vec seq))
           (set! seq (rank-1-array->list seq))
           (do ((p (step (car dims)) (cdr p))
                (i 0 (+ i 1)))
               ((null? p) vec)
             (array-set! vec (car p) i))))
        (else ;; otherwise, assume it is a list
         (step (length seq)))))

;;; (sort! sequence less?)
;;; sorts the list, array, or string sequence destructively.  It uses
;;; a version of merge-sort invented, to the best of my knowledge, by
;;; David H. D.  Warren, and first used in the DEC-10 Prolog system.
;;; R. A. O'Keefe adapted it to work destructively in Scheme.
;;; A. Jaffer modified to always return the original pair.
;@
(define (sort! seq less? . opt-key)
  (define ret (sort:sort! seq (sort:make-predicate 'sort! less? opt-key)))
  (if (not (eq? ret seq))
      (do ((crt ret (cdr crt)))
	  ((eq? (cdr crt) seq)
	   (set-cdr! crt ret)
	   (let ((scar (car seq)) (scdr (cdr seq)))
	     (set-car! seq (car ret)) (set-cdr! seq (cdr ret))
	     (set-car! ret scar) (set-cdr! ret scdr)))))
  seq)

;;; (sort sequence less?)
;;; sorts a array, string, or list non-destructively.  It does this
;;; by sorting a copy of the sequence.  My understanding is that the
;;; Standard says that the result of append is always "newly
;;; allocated" except for sharing structure with "the last argument",
;;; so (append x '()) ought to be a standard way of copying a list x.
;@
(define (sort seq less? . opt-key)
  (set! less? (sort:make-predicate 'sort less? opt-key))
  (cond ((array? seq)
         (let ((dimensions (array-dimensions seq)))
           (define newra (apply make-array seq dimensions))
           (do ((sorted (sort:sort! (rank-1-array->list seq) less?)
                        (cdr sorted))
                (i 0 (+ i 1)))
               ((null? sorted) newra)
             (array-set! newra (car sorted) i))))
        (else (sort:sort! (append seq '()) less?))))

Copyright

Copyright (C) Aubrey Jaffer 2006. All Rights Reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Editor: David Van Horn