1 .\" Copyright (c) 1990, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the American National Standards Committee X3, on Information
6 .\" Processing Systems.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 3. All advertising materials mentioning features or use of this software
17 .\" must display the following acknowledgement:
18 .\" This product includes software developed by the University of
19 .\" California, Berkeley and its contributors.
20 .\" 4. Neither the name of the University nor the names of its contributors
21 .\" may be used to endorse or promote products derived from this software
22 .\" without specific prior written permission.
24 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 .\" @(#)qsort.3 8.1 (Berkeley) 6/4/93
37 .\" $FreeBSD: src/lib/libc/stdlib/qsort.3,v 1.15 2004/07/02 23:52:12 ru Exp $
39 .Dd September 30, 2003
64 .Fa "int \*[lp]*compar\*[rp]\*[lp]const void *, const void *\*[rp]"
72 .Fa "int \*[lp]^compar\*[rp]\*[lp]const void *, const void *\*[rp]"
80 .Fa "int \*[lp]*compar\*[rp]\*[lp]const void *, const void *\*[rp]"
88 .Fa "int \*[lp]^compar\*[rp]\*[lp]const void *, const void *\*[rp]"
96 .Fa "int \*[lp]*compar\*[rp]\*[lp]const void *, const void *\*[rp]"
104 .Fa "int \*[lp]^compar\*[rp]\*[lp]const void *, const void *\*[rp]"
113 .Fa "int \*[lp]*compar\*[rp]\*[lp]void *, const void *, const void *\*[rp]"
118 function is a modified partition-exchange sort, or quicksort.
121 function is a modified selection sort.
124 function is a modified merge sort with exponential search,
125 intended for sorting data with pre-existing order.
131 functions sort an array of
133 objects, the initial member of which is pointed to by
135 The size of each object is specified by
140 behaves similarly, but
144 be greater than or equal to
145 .Dq "sizeof(void *) / 2" .
147 The contents of the array
149 are sorted in ascending order according to
150 a comparison function pointed to by
152 which requires two arguments pointing to the objects being
155 The comparison function must return an integer less than, equal to, or
156 greater than zero if the first argument is considered to be respectively
157 less than, equal to, or greater than the second.
161 function behaves identically to
163 except that it takes an additional argument,
165 which is passed unchanged as the first argument to function pointed to
167 This allows the comparison function to access additional
168 data without using global variables, and thus
170 is suitable for use in functions which must be reentrant.
172 The algorithms implemented by
179 stable; that is, if two members compare as equal, their order in
180 the sorted array is undefined.
189 functions are an implementation of C.A.R.
193 a variant of partition-exchange sorting; in particular, see
197 takes O N lg N average time.
198 This implementation uses median selection to avoid its
199 O N**2 worst-case behavior.
203 function is an implementation of
204 .An "J.W.J. William" Ns 's
207 a variant of selection sorting; in particular, see
208 .An "D.E. Knuth" Ns 's
211 takes O N lg N worst-case time.
216 is that it uses almost no additional memory; while
218 does not allocate memory, it is implemented using recursion.
222 requires additional memory of size
225 bytes; it should be used only when space is not at a premium.
229 is optimized for data with pre-existing order; its worst case
230 time is O N lg N; its best case is O N.
238 Memory availability and pre-existing order in the data can make this
240 #ifdef UNIFDEF_BLOCKS
247 routines are like the corresponding routines without the _b suffix, expect
250 callback is a block pointer instead of a function pointer.
254 #ifdef UNIFDEF_BLOCKS
265 #ifdef UNIFDEF_BLOCKS
266 .ds HEAPSORT_B heapsort_b
267 .ds MERGESORT_B mergesort_b
269 .Rv -std heapsort \*[HEAPSORT_B] mergesort \*[MERGESORT_B]
272 #ifdef UNIFDEF_BLOCKS
283 functions succeed unless:
288 argument is zero, or,
293 #ifdef UNIFDEF_BLOCKS
298 .Dq "sizeof(void *) / 2" .
301 #ifdef UNIFDEF_BLOCKS
313 were unable to allocate memory.
318 did not permit the comparison routine itself to call
320 This is no longer true.
328 .%J "The Computer Journal"
336 .%J "Communications of the ACM"
343 .%B "The Art of Computer Programming"
345 .%T "Sorting and Searching"
346 .%P pp. 114-123, 145-149
350 .%T "Optimistic Sorting and Information Theoretic Complexity"
351 .%J "Fourth Annual ACM-SIAM Symposium on Discrete Algorithms"
357 .%T "Engineering a Sort Function"
358 .%J "Software--Practice and Experience"