xref: /freebsd/lib/libc/stdlib/qsort.3 (revision 8ce3e01e09403c2f34b7fd373a301e0f2eaa1504)
158f0484fSRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" This code is derived from software contributed to Berkeley by
558f0484fSRodney W. Grimes.\" the American National Standards Committee X3, on Information
658f0484fSRodney W. Grimes.\" Processing Systems.
758f0484fSRodney W. Grimes.\"
858f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
958f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
1058f0484fSRodney W. Grimes.\" are met:
1158f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
1258f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
1358f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1458f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1558f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
1658f0484fSRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors
1758f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1858f0484fSRodney W. Grimes.\"    without specific prior written permission.
1958f0484fSRodney W. Grimes.\"
2058f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2158f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2258f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2358f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2458f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2558f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2658f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2758f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2858f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2958f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3058f0484fSRodney W. Grimes.\" SUCH DAMAGE.
3158f0484fSRodney W. Grimes.\"
3258f0484fSRodney W. Grimes.\"     @(#)qsort.3	8.1 (Berkeley) 6/4/93
337f3dea24SPeter Wemm.\" $FreeBSD$
3458f0484fSRodney W. Grimes.\"
35*8ce3e01eSGiorgos Keramidas.Dd February 20, 2013
3658f0484fSRodney W. Grimes.Dt QSORT 3
3758f0484fSRodney W. Grimes.Os
3858f0484fSRodney W. Grimes.Sh NAME
39eca67d51SGarrett Wollman.Nm qsort , qsort_r , heapsort , mergesort
4058f0484fSRodney W. Grimes.Nd sort functions
4125bb73e0SAlexey Zelkin.Sh LIBRARY
4225bb73e0SAlexey Zelkin.Lb libc
4358f0484fSRodney W. Grimes.Sh SYNOPSIS
448aefde06SJeroen Ruigrok van der Werven.In stdlib.h
4558f0484fSRodney W. Grimes.Ft void
461798791dSRuslan Ermilov.Fo qsort
471798791dSRuslan Ermilov.Fa "void *base"
481798791dSRuslan Ermilov.Fa "size_t nmemb"
491798791dSRuslan Ermilov.Fa "size_t size"
501798791dSRuslan Ermilov.Fa "int \*[lp]*compar\*[rp]\*[lp]const void *, const void *\*[rp]"
511798791dSRuslan Ermilov.Fc
52eca67d51SGarrett Wollman.Ft void
53eca67d51SGarrett Wollman.Fo qsort_r
54eca67d51SGarrett Wollman.Fa "void *base"
55eca67d51SGarrett Wollman.Fa "size_t nmemb"
56eca67d51SGarrett Wollman.Fa "size_t size"
57eca67d51SGarrett Wollman.Fa "void *thunk"
581798791dSRuslan Ermilov.Fa "int \*[lp]*compar\*[rp]\*[lp]void *, const void *, const void *\*[rp]"
59eca67d51SGarrett Wollman.Fc
6058f0484fSRodney W. Grimes.Ft int
611798791dSRuslan Ermilov.Fo heapsort
621798791dSRuslan Ermilov.Fa "void *base"
631798791dSRuslan Ermilov.Fa "size_t nmemb"
641798791dSRuslan Ermilov.Fa "size_t size"
651798791dSRuslan Ermilov.Fa "int \*[lp]*compar\*[rp]\*[lp]const void *, const void *\*[rp]"
661798791dSRuslan Ermilov.Fc
6758f0484fSRodney W. Grimes.Ft int
681798791dSRuslan Ermilov.Fo mergesort
691798791dSRuslan Ermilov.Fa "void *base"
701798791dSRuslan Ermilov.Fa "size_t nmemb"
711798791dSRuslan Ermilov.Fa "size_t size"
721798791dSRuslan Ermilov.Fa "int \*[lp]*compar\*[rp]\*[lp]const void *, const void *\*[rp]"
731798791dSRuslan Ermilov.Fc
7458f0484fSRodney W. Grimes.Sh DESCRIPTION
7558f0484fSRodney W. GrimesThe
7658f0484fSRodney W. Grimes.Fn qsort
7758f0484fSRodney W. Grimesfunction is a modified partition-exchange sort, or quicksort.
7858f0484fSRodney W. GrimesThe
7958f0484fSRodney W. Grimes.Fn heapsort
8058f0484fSRodney W. Grimesfunction is a modified selection sort.
8158f0484fSRodney W. GrimesThe
8258f0484fSRodney W. Grimes.Fn mergesort
8358f0484fSRodney W. Grimesfunction is a modified merge sort with exponential search
8458f0484fSRodney W. Grimesintended for sorting data with pre-existing order.
8558f0484fSRodney W. Grimes.Pp
8658f0484fSRodney W. GrimesThe
8758f0484fSRodney W. Grimes.Fn qsort
8858f0484fSRodney W. Grimesand
8958f0484fSRodney W. Grimes.Fn heapsort
9058f0484fSRodney W. Grimesfunctions sort an array of
9158f0484fSRodney W. Grimes.Fa nmemb
9258f0484fSRodney W. Grimesobjects, the initial member of which is pointed to by
9358f0484fSRodney W. Grimes.Fa base .
9458f0484fSRodney W. GrimesThe size of each object is specified by
9558f0484fSRodney W. Grimes.Fa size .
961fae73b1SRuslan ErmilovThe
971fae73b1SRuslan Ermilov.Fn mergesort
981fae73b1SRuslan Ermilovfunction
9958f0484fSRodney W. Grimesbehaves similarly, but
10058f0484fSRodney W. Grimes.Em requires
10158f0484fSRodney W. Grimesthat
10258f0484fSRodney W. Grimes.Fa size
10358f0484fSRodney W. Grimesbe greater than
10458f0484fSRodney W. Grimes.Dq "sizeof(void *) / 2" .
10558f0484fSRodney W. Grimes.Pp
10658f0484fSRodney W. GrimesThe contents of the array
10758f0484fSRodney W. Grimes.Fa base
10858f0484fSRodney W. Grimesare sorted in ascending order according to
10958f0484fSRodney W. Grimesa comparison function pointed to by
11058f0484fSRodney W. Grimes.Fa compar ,
11158f0484fSRodney W. Grimeswhich requires two arguments pointing to the objects being
11258f0484fSRodney W. Grimescompared.
11358f0484fSRodney W. Grimes.Pp
11458f0484fSRodney W. GrimesThe comparison function must return an integer less than, equal to, or
11558f0484fSRodney W. Grimesgreater than zero if the first argument is considered to be respectively
11658f0484fSRodney W. Grimesless than, equal to, or greater than the second.
11758f0484fSRodney W. Grimes.Pp
118eca67d51SGarrett WollmanThe
119eca67d51SGarrett Wollman.Fn qsort_r
120eca67d51SGarrett Wollmanfunction behaves identically to
121eca67d51SGarrett Wollman.Fn qsort ,
122eca67d51SGarrett Wollmanexcept that it takes an additional argument,
123eca67d51SGarrett Wollman.Fa thunk ,
124eca67d51SGarrett Wollmanwhich is passed unchanged as the first argument to function pointed to
125eca67d51SGarrett Wollman.Fa compar .
126eca67d51SGarrett WollmanThis allows the comparison function to access additional
127eca67d51SGarrett Wollmandata without using global variables, and thus
128eca67d51SGarrett Wollman.Fn qsort_r
129eca67d51SGarrett Wollmanis suitable for use in functions which must be reentrant.
130eca67d51SGarrett Wollman.Pp
131eca67d51SGarrett WollmanThe algorithms implemented by
132eca67d51SGarrett Wollman.Fn qsort ,
133eca67d51SGarrett Wollman.Fn qsort_r ,
13458f0484fSRodney W. Grimesand
13558f0484fSRodney W. Grimes.Fn heapsort
13658f0484fSRodney W. Grimesare
13758f0484fSRodney W. Grimes.Em not
13858f0484fSRodney W. Grimesstable, that is, if two members compare as equal, their order in
13958f0484fSRodney W. Grimesthe sorted array is undefined.
140eca67d51SGarrett WollmanThe
14158f0484fSRodney W. Grimes.Fn mergesort
142eca67d51SGarrett Wollmanalgorithm is stable.
14358f0484fSRodney W. Grimes.Pp
14458f0484fSRodney W. GrimesThe
14558f0484fSRodney W. Grimes.Fn qsort
146eca67d51SGarrett Wollmanand
147eca67d51SGarrett Wollman.Fn qsort_r
1481a0a9345SRuslan Ermilovfunctions are an implementation of C.A.R.
1491a0a9345SRuslan ErmilovHoare's
1501798791dSRuslan Ermilov.Dq quicksort
1511798791dSRuslan Ermilovalgorithm,
1521a0a9345SRuslan Ermilova variant of partition-exchange sorting; in particular, see
1531a0a9345SRuslan Ermilov.An D.E. Knuth Ns 's
1541a0a9345SRuslan Ermilov.%T "Algorithm Q" .
155eca67d51SGarrett Wollman.Sy Quicksort
15658f0484fSRodney W. Grimestakes O N lg N average time.
15758f0484fSRodney W. GrimesThis implementation uses median selection to avoid its
15858f0484fSRodney W. GrimesO N**2 worst-case behavior.
15958f0484fSRodney W. Grimes.Pp
16058f0484fSRodney W. GrimesThe
16158f0484fSRodney W. Grimes.Fn heapsort
1621a0a9345SRuslan Ermilovfunction is an implementation of
1631a0a9345SRuslan Ermilov.An "J.W.J. William" Ns 's
1641798791dSRuslan Ermilov.Dq heapsort
1651798791dSRuslan Ermilovalgorithm,
1661a0a9345SRuslan Ermilova variant of selection sorting; in particular, see
1671a0a9345SRuslan Ermilov.An "D.E. Knuth" Ns 's
1681a0a9345SRuslan Ermilov.%T "Algorithm H" .
169eca67d51SGarrett Wollman.Sy Heapsort
17058f0484fSRodney W. Grimestakes O N lg N worst-case time.
17158f0484fSRodney W. GrimesIts
17258f0484fSRodney W. Grimes.Em only
17358f0484fSRodney W. Grimesadvantage over
17458f0484fSRodney W. Grimes.Fn qsort
17558f0484fSRodney W. Grimesis that it uses almost no additional memory; while
17658f0484fSRodney W. Grimes.Fn qsort
17758f0484fSRodney W. Grimesdoes not allocate memory, it is implemented using recursion.
17858f0484fSRodney W. Grimes.Pp
17958f0484fSRodney W. GrimesThe function
18058f0484fSRodney W. Grimes.Fn mergesort
18158f0484fSRodney W. Grimesrequires additional memory of size
18258f0484fSRodney W. Grimes.Fa nmemb *
18358f0484fSRodney W. Grimes.Fa size
18458f0484fSRodney W. Grimesbytes; it should be used only when space is not at a premium.
1851fae73b1SRuslan ErmilovThe
1861fae73b1SRuslan Ermilov.Fn mergesort
1871fae73b1SRuslan Ermilovfunction
18858f0484fSRodney W. Grimesis optimized for data with pre-existing order; its worst case
18958f0484fSRodney W. Grimestime is O N lg N; its best case is O N.
19058f0484fSRodney W. Grimes.Pp
19158f0484fSRodney W. GrimesNormally,
19258f0484fSRodney W. Grimes.Fn qsort
19358f0484fSRodney W. Grimesis faster than
19458f0484fSRodney W. Grimes.Fn mergesort
19558f0484fSRodney W. Grimesis faster than
19658f0484fSRodney W. Grimes.Fn heapsort .
19758f0484fSRodney W. GrimesMemory availability and pre-existing order in the data can make this
19858f0484fSRodney W. Grimesuntrue.
19958f0484fSRodney W. Grimes.Sh RETURN VALUES
20058f0484fSRodney W. GrimesThe
20158f0484fSRodney W. Grimes.Fn qsort
202eca67d51SGarrett Wollmanand
203eca67d51SGarrett Wollman.Fn qsort_r
204eca67d51SGarrett Wollmanfunctions
205eca67d51SGarrett Wollmanreturn no value.
20658f0484fSRodney W. Grimes.Pp
207d6002fefSRuslan Ermilov.Rv -std heapsort mergesort
20824a0682cSRuslan Ermilov.Sh COMPATIBILITY
20924a0682cSRuslan ErmilovPrevious versions of
21024a0682cSRuslan Ermilov.Fn qsort
21124a0682cSRuslan Ermilovdid not permit the comparison routine itself to call
21224a0682cSRuslan Ermilov.Fn qsort 3 .
21324a0682cSRuslan ErmilovThis is no longer true.
214*8ce3e01eSGiorgos Keramidas.Sh EXAMPLES
215*8ce3e01eSGiorgos KeramidasA sample program that sorts an array of
216*8ce3e01eSGiorgos Keramidas.Vt int
217*8ce3e01eSGiorgos Keramidasvalues in place using
218*8ce3e01eSGiorgos Keramidas.Fn qsort ,
219*8ce3e01eSGiorgos Keramidasand then prints the sorted array to standard output is:
220*8ce3e01eSGiorgos Keramidas.Bd -literal
221*8ce3e01eSGiorgos Keramidas#include <stdio.h>
222*8ce3e01eSGiorgos Keramidas#include <stdlib.h>
223*8ce3e01eSGiorgos Keramidas#include <string.h>
224*8ce3e01eSGiorgos Keramidas
225*8ce3e01eSGiorgos Keramidas/*
226*8ce3e01eSGiorgos Keramidas * Custom comparison function that can compare 'int' values through pointers
227*8ce3e01eSGiorgos Keramidas * passed by qsort(3).
228*8ce3e01eSGiorgos Keramidas */
229*8ce3e01eSGiorgos Keramidasstatic int
230*8ce3e01eSGiorgos Keramidasint_compare(const void *p1, const void *p2)
231*8ce3e01eSGiorgos Keramidas{
232*8ce3e01eSGiorgos Keramidas        int *left = (int *)p1;
233*8ce3e01eSGiorgos Keramidas        int *right = (int *)p2;
234*8ce3e01eSGiorgos Keramidas
235*8ce3e01eSGiorgos Keramidas        if (*left < *right)
236*8ce3e01eSGiorgos Keramidas                return (-1);
237*8ce3e01eSGiorgos Keramidas        else if (*left > *right)
238*8ce3e01eSGiorgos Keramidas                return (1);
239*8ce3e01eSGiorgos Keramidas        else
240*8ce3e01eSGiorgos Keramidas                return (0);
241*8ce3e01eSGiorgos Keramidas}
242*8ce3e01eSGiorgos Keramidas
243*8ce3e01eSGiorgos Keramidas/*
244*8ce3e01eSGiorgos Keramidas * Sort an array of 'int' values and print it to standard output.
245*8ce3e01eSGiorgos Keramidas */
246*8ce3e01eSGiorgos Keramidasint
247*8ce3e01eSGiorgos Keramidasmain(void)
248*8ce3e01eSGiorgos Keramidas{
249*8ce3e01eSGiorgos Keramidas       int int_array[] = { 4, 5, 9, 3, 0, 1, 7, 2, 8, 6 };
250*8ce3e01eSGiorgos Keramidas       const int array_size = sizeof(int_array) / sizeof(int_array[0]);
251*8ce3e01eSGiorgos Keramidas       int k;
252*8ce3e01eSGiorgos Keramidas
253*8ce3e01eSGiorgos Keramidas       qsort(&int_array, array_size, sizeof(int), int_compare);
254*8ce3e01eSGiorgos Keramidas       for (k = 0; k < array_size; k++)
255*8ce3e01eSGiorgos Keramidas                printf(" %d", int_array[k]);
256*8ce3e01eSGiorgos Keramidas        printf("\\n");
257*8ce3e01eSGiorgos Keramidas        exit(EXIT_SUCCESS);
258*8ce3e01eSGiorgos Keramidas}
259*8ce3e01eSGiorgos Keramidas.Ed
26058f0484fSRodney W. Grimes.Sh ERRORS
26158f0484fSRodney W. GrimesThe
26258f0484fSRodney W. Grimes.Fn heapsort
2638d2c3c32SRobert Nordierand
2648d2c3c32SRobert Nordier.Fn mergesort
2658d2c3c32SRobert Nordierfunctions succeed unless:
26658f0484fSRodney W. Grimes.Bl -tag -width Er
26758f0484fSRodney W. Grimes.It Bq Er EINVAL
26858f0484fSRodney W. GrimesThe
26958f0484fSRodney W. Grimes.Fa size
27058f0484fSRodney W. Grimesargument is zero, or,
27158f0484fSRodney W. Grimesthe
27258f0484fSRodney W. Grimes.Fa size
27358f0484fSRodney W. Grimesargument to
27458f0484fSRodney W. Grimes.Fn mergesort
27558f0484fSRodney W. Grimesis less than
27658f0484fSRodney W. Grimes.Dq "sizeof(void *) / 2" .
27758f0484fSRodney W. Grimes.It Bq Er ENOMEM
2781fae73b1SRuslan ErmilovThe
2791fae73b1SRuslan Ermilov.Fn heapsort
28058f0484fSRodney W. Grimesor
28158f0484fSRodney W. Grimes.Fn mergesort
2821fae73b1SRuslan Ermilovfunctions
28358f0484fSRodney W. Grimeswere unable to allocate memory.
28458f0484fSRodney W. Grimes.El
28558f0484fSRodney W. Grimes.Sh SEE ALSO
28658f0484fSRodney W. Grimes.Xr sort 1 ,
28758f0484fSRodney W. Grimes.Xr radixsort 3
28858f0484fSRodney W. Grimes.Rs
28958f0484fSRodney W. Grimes.%A Hoare, C.A.R.
29058f0484fSRodney W. Grimes.%D 1962
29158f0484fSRodney W. Grimes.%T "Quicksort"
29258f0484fSRodney W. Grimes.%J "The Computer Journal"
29358f0484fSRodney W. Grimes.%V 5:1
29458f0484fSRodney W. Grimes.%P pp. 10-15
29558f0484fSRodney W. Grimes.Re
29658f0484fSRodney W. Grimes.Rs
29758f0484fSRodney W. Grimes.%A Williams, J.W.J
29858f0484fSRodney W. Grimes.%D 1964
29958f0484fSRodney W. Grimes.%T "Heapsort"
30058f0484fSRodney W. Grimes.%J "Communications of the ACM"
30158f0484fSRodney W. Grimes.%V 7:1
30258f0484fSRodney W. Grimes.%P pp. 347-348
30358f0484fSRodney W. Grimes.Re
30458f0484fSRodney W. Grimes.Rs
30558f0484fSRodney W. Grimes.%A Knuth, D.E.
30658f0484fSRodney W. Grimes.%D 1968
30758f0484fSRodney W. Grimes.%B "The Art of Computer Programming"
30858f0484fSRodney W. Grimes.%V Vol. 3
30958f0484fSRodney W. Grimes.%T "Sorting and Searching"
31058f0484fSRodney W. Grimes.%P pp. 114-123, 145-149
31158f0484fSRodney W. Grimes.Re
31258f0484fSRodney W. Grimes.Rs
3135e24a424STim J. Robbins.%A McIlroy, P.M.
31458f0484fSRodney W. Grimes.%T "Optimistic Sorting and Information Theoretic Complexity"
31558f0484fSRodney W. Grimes.%J "Fourth Annual ACM-SIAM Symposium on Discrete Algorithms"
31658f0484fSRodney W. Grimes.%V January 1992
31758f0484fSRodney W. Grimes.Re
31858f0484fSRodney W. Grimes.Rs
31958f0484fSRodney W. Grimes.%A Bentley, J.L.
3205e24a424STim J. Robbins.%A McIlroy, M.D.
32158f0484fSRodney W. Grimes.%T "Engineering a Sort Function"
3225e24a424STim J. Robbins.%J "Software--Practice and Experience"
3235e24a424STim J. Robbins.%V Vol. 23(11)
3245e24a424STim J. Robbins.%P pp. 1249-1265
3255e24a424STim J. Robbins.%D November\ 1993
32658f0484fSRodney W. Grimes.Re
32758f0484fSRodney W. Grimes.Sh STANDARDS
32858f0484fSRodney W. GrimesThe
32958f0484fSRodney W. Grimes.Fn qsort
33058f0484fSRodney W. Grimesfunction
33158f0484fSRodney W. Grimesconforms to
332588a200cSRuslan Ermilov.St -isoC .
333