| www.delorie.com/gnu/docs/guile/guile_274.html | search |
![]() Buy GNU books! | |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Sorting is very important in computer programs. Therefore, Guile comes
with several sorting procedures built-in. As always, procedures with
names ending in ! are side-effecting, that means that they may
modify their parameters in order to produce their results.
The first group of procedures can be used to merge two lists (which must be already sorted on their own) and produce sorted lists containing all elements of the input lists.
(sorted? alist less?) and (sorted? blist less?),
return a new list in which the elements of alist and
blist have been stably interleaved so that
(sorted? (merge alist blist less?) less?).
Note: this does _not_ accept vectors.
(sorted? alist less?) and (sorted? blist less?) and
returns a new list in which the elements of alist and
blist have been stably interleaved so that
(sorted? (merge alist blist less?) less?).
This is the destructive variant of merge
Note: this does _not_ accept vectors.
The following procedures can operate on sequences which are either
vectors or list. According to the given arguments, they return sorted
vectors or lists, respectively. The first of the following procedures
determines whether a sequence is already sorted, the other sort a given
sequence. The variants with names starting with stable- are
special in that they maintain a special property of the input sequences:
If two or more elements are the same according to the comparison
predicate, they are left in the same order as they appeared in the
input.
#t iff items is a list or a vector such that
for all 1 <= i <= m, the predicate less returns true when
applied to all elements i - 1 and i
The procedures in the last group only accept lists or vectors as input, as their names indicate.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
| webmaster donations bookstore | delorie software privacy |
| Copyright © 2003 by The Free Software Foundation | Updated Jun 2003 |