xref: /freebsd/lib/libc/stdlib/qsort.3 (revision 580b4d185bc1d20da91429229920ce590309cbf6)
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.
16*580b4d18SEd Maste.\" 3. 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.\"
358ce3e01eSGiorgos 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
2088ce3e01eSGiorgos Keramidas.Sh EXAMPLES
2098ce3e01eSGiorgos KeramidasA sample program that sorts an array of
2108ce3e01eSGiorgos Keramidas.Vt int
2118ce3e01eSGiorgos Keramidasvalues in place using
2128ce3e01eSGiorgos Keramidas.Fn qsort ,
2138ce3e01eSGiorgos Keramidasand then prints the sorted array to standard output is:
2148ce3e01eSGiorgos Keramidas.Bd -literal
2158ce3e01eSGiorgos Keramidas#include <stdio.h>
2168ce3e01eSGiorgos Keramidas#include <stdlib.h>
2178ce3e01eSGiorgos Keramidas
2188ce3e01eSGiorgos Keramidas/*
2198ce3e01eSGiorgos Keramidas * Custom comparison function that can compare 'int' values through pointers
2208ce3e01eSGiorgos Keramidas * passed by qsort(3).
2218ce3e01eSGiorgos Keramidas */
2228ce3e01eSGiorgos Keramidasstatic int
2238ce3e01eSGiorgos Keramidasint_compare(const void *p1, const void *p2)
2248ce3e01eSGiorgos Keramidas{
225302318d5SGiorgos Keramidas        int left = *(const int *)p1;
226302318d5SGiorgos Keramidas        int right = *(const int *)p2;
2278ce3e01eSGiorgos Keramidas
228302318d5SGiorgos Keramidas        return ((left > right) - (left < right));
2298ce3e01eSGiorgos Keramidas}
2308ce3e01eSGiorgos Keramidas
2318ce3e01eSGiorgos Keramidas/*
2328ce3e01eSGiorgos Keramidas * Sort an array of 'int' values and print it to standard output.
2338ce3e01eSGiorgos Keramidas */
2348ce3e01eSGiorgos Keramidasint
2358ce3e01eSGiorgos Keramidasmain(void)
2368ce3e01eSGiorgos Keramidas{
2378ce3e01eSGiorgos Keramidas       int int_array[] = { 4, 5, 9, 3, 0, 1, 7, 2, 8, 6 };
238302318d5SGiorgos Keramidas       const size_t array_size = sizeof(int_array) / sizeof(int_array[0]);
239302318d5SGiorgos Keramidas       size_t k;
2408ce3e01eSGiorgos Keramidas
241302318d5SGiorgos Keramidas       qsort(&int_array, array_size, sizeof(int_array[0]), int_compare);
2428ce3e01eSGiorgos Keramidas       for (k = 0; k < array_size; k++)
2438ce3e01eSGiorgos Keramidas                printf(" %d", int_array[k]);
244302318d5SGiorgos Keramidas        puts("");
245302318d5SGiorgos Keramidas        return (EXIT_SUCCESS);
2468ce3e01eSGiorgos Keramidas}
2478ce3e01eSGiorgos Keramidas.Ed
248954349a6SJoel Dahl.Sh COMPATIBILITY
249954349a6SJoel DahlPrevious versions of
250954349a6SJoel Dahl.Fn qsort
251954349a6SJoel Dahldid not permit the comparison routine itself to call
252954349a6SJoel Dahl.Fn qsort 3 .
253954349a6SJoel DahlThis is no longer true.
25458f0484fSRodney W. Grimes.Sh ERRORS
25558f0484fSRodney W. GrimesThe
25658f0484fSRodney W. Grimes.Fn heapsort
2578d2c3c32SRobert Nordierand
2588d2c3c32SRobert Nordier.Fn mergesort
2598d2c3c32SRobert Nordierfunctions succeed unless:
26058f0484fSRodney W. Grimes.Bl -tag -width Er
26158f0484fSRodney W. Grimes.It Bq Er EINVAL
26258f0484fSRodney W. GrimesThe
26358f0484fSRodney W. Grimes.Fa size
26458f0484fSRodney W. Grimesargument is zero, or,
26558f0484fSRodney W. Grimesthe
26658f0484fSRodney W. Grimes.Fa size
26758f0484fSRodney W. Grimesargument to
26858f0484fSRodney W. Grimes.Fn mergesort
26958f0484fSRodney W. Grimesis less than
27058f0484fSRodney W. Grimes.Dq "sizeof(void *) / 2" .
27158f0484fSRodney W. Grimes.It Bq Er ENOMEM
2721fae73b1SRuslan ErmilovThe
2731fae73b1SRuslan Ermilov.Fn heapsort
27458f0484fSRodney W. Grimesor
27558f0484fSRodney W. Grimes.Fn mergesort
2761fae73b1SRuslan Ermilovfunctions
27758f0484fSRodney W. Grimeswere unable to allocate memory.
27858f0484fSRodney W. Grimes.El
27958f0484fSRodney W. Grimes.Sh SEE ALSO
28058f0484fSRodney W. Grimes.Xr sort 1 ,
28158f0484fSRodney W. Grimes.Xr radixsort 3
28258f0484fSRodney W. Grimes.Rs
28358f0484fSRodney W. Grimes.%A Hoare, C.A.R.
28458f0484fSRodney W. Grimes.%D 1962
28558f0484fSRodney W. Grimes.%T "Quicksort"
28658f0484fSRodney W. Grimes.%J "The Computer Journal"
28758f0484fSRodney W. Grimes.%V 5:1
28858f0484fSRodney W. Grimes.%P pp. 10-15
28958f0484fSRodney W. Grimes.Re
29058f0484fSRodney W. Grimes.Rs
29158f0484fSRodney W. Grimes.%A Williams, J.W.J
29258f0484fSRodney W. Grimes.%D 1964
29358f0484fSRodney W. Grimes.%T "Heapsort"
29458f0484fSRodney W. Grimes.%J "Communications of the ACM"
29558f0484fSRodney W. Grimes.%V 7:1
29658f0484fSRodney W. Grimes.%P pp. 347-348
29758f0484fSRodney W. Grimes.Re
29858f0484fSRodney W. Grimes.Rs
29958f0484fSRodney W. Grimes.%A Knuth, D.E.
30058f0484fSRodney W. Grimes.%D 1968
30158f0484fSRodney W. Grimes.%B "The Art of Computer Programming"
30258f0484fSRodney W. Grimes.%V Vol. 3
30358f0484fSRodney W. Grimes.%T "Sorting and Searching"
30458f0484fSRodney W. Grimes.%P pp. 114-123, 145-149
30558f0484fSRodney W. Grimes.Re
30658f0484fSRodney W. Grimes.Rs
3075e24a424STim J. Robbins.%A McIlroy, P.M.
30858f0484fSRodney W. Grimes.%T "Optimistic Sorting and Information Theoretic Complexity"
30958f0484fSRodney W. Grimes.%J "Fourth Annual ACM-SIAM Symposium on Discrete Algorithms"
31058f0484fSRodney W. Grimes.%V January 1992
31158f0484fSRodney W. Grimes.Re
31258f0484fSRodney W. Grimes.Rs
31358f0484fSRodney W. Grimes.%A Bentley, J.L.
3145e24a424STim J. Robbins.%A McIlroy, M.D.
31558f0484fSRodney W. Grimes.%T "Engineering a Sort Function"
3165e24a424STim J. Robbins.%J "Software--Practice and Experience"
3175e24a424STim J. Robbins.%V Vol. 23(11)
3185e24a424STim J. Robbins.%P pp. 1249-1265
3195e24a424STim J. Robbins.%D November\ 1993
32058f0484fSRodney W. Grimes.Re
32158f0484fSRodney W. Grimes.Sh STANDARDS
32258f0484fSRodney W. GrimesThe
32358f0484fSRodney W. Grimes.Fn qsort
32458f0484fSRodney W. Grimesfunction
32558f0484fSRodney W. Grimesconforms to
326588a200cSRuslan Ermilov.St -isoC .
327