xref: /netbsd-src/lib/libc/stdlib/qsort.c (revision bfb6cb13d599546df69c7e4d20d70e22e15a549d)
1 /*	$NetBSD: qsort.c,v 1.14 2005/12/24 21:11:16 perry Exp $	*/
2 
3 /*-
4  * Copyright (c) 1992, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 #if defined(LIBC_SCCS) && !defined(lint)
34 #if 0
35 static char sccsid[] = "@(#)qsort.c	8.1 (Berkeley) 6/4/93";
36 #else
37 __RCSID("$NetBSD: qsort.c,v 1.14 2005/12/24 21:11:16 perry Exp $");
38 #endif
39 #endif /* LIBC_SCCS and not lint */
40 
41 #include <sys/types.h>
42 
43 #include <assert.h>
44 #include <errno.h>
45 #include <stdlib.h>
46 
47 static inline char	*med3 __P((char *, char *, char *,
48     int (*)(const void *, const void *)));
49 static inline void	 swapfunc __P((char *, char *, size_t, int));
50 
51 #define min(a, b)	(a) < (b) ? a : b
52 
53 /*
54  * Qsort routine from Bentley & McIlroy's "Engineering a Sort Function".
55  */
56 #define swapcode(TYPE, parmi, parmj, n) { 		\
57 	size_t i = (n) / sizeof (TYPE); 		\
58 	TYPE *pi = (TYPE *)(void *)(parmi); 		\
59 	TYPE *pj = (TYPE *)(void *)(parmj); 		\
60 	do { 						\
61 		TYPE	t = *pi;			\
62 		*pi++ = *pj;				\
63 		*pj++ = t;				\
64         } while (--i > 0);				\
65 }
66 
67 #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \
68 	es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1;
69 
70 static inline void
71 swapfunc(a, b, n, swaptype)
72 	char *a, *b;
73 	size_t n;
74 	int swaptype;
75 {
76 	if (swaptype <= 1)
77 		swapcode(long, a, b, n)
78 	else
79 		swapcode(char, a, b, n)
80 }
81 
82 #define swap(a, b)						\
83 	if (swaptype == 0) {					\
84 		long t = *(long *)(void *)(a);			\
85 		*(long *)(void *)(a) = *(long *)(void *)(b);	\
86 		*(long *)(void *)(b) = t;			\
87 	} else							\
88 		swapfunc(a, b, es, swaptype)
89 
90 #define vecswap(a, b, n) if ((n) > 0) swapfunc((a), (b), (size_t)(n), swaptype)
91 
92 static inline char *
93 med3(a, b, c, cmp)
94 	char *a, *b, *c;
95 	int (*cmp) __P((const void *, const void *));
96 {
97 	return cmp(a, b) < 0 ?
98 	       (cmp(b, c) < 0 ? b : (cmp(a, c) < 0 ? c : a ))
99               :(cmp(b, c) > 0 ? b : (cmp(a, c) < 0 ? a : c ));
100 }
101 
102 void
103 qsort(a, n, es, cmp)
104 	void *a;
105 	size_t n, es;
106 	int (*cmp) __P((const void *, const void *));
107 {
108 	char *pa, *pb, *pc, *pd, *pl, *pm, *pn;
109 	int d, r, swaptype, swap_cnt;
110 
111 	_DIAGASSERT(a != NULL);
112 	_DIAGASSERT(cmp != NULL);
113 
114 loop:	SWAPINIT(a, es);
115 	swap_cnt = 0;
116 	if (n < 7) {
117 		for (pm = (char *) a + es; pm < (char *) a + n * es; pm += es)
118 			for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0;
119 			     pl -= es)
120 				swap(pl, pl - es);
121 		return;
122 	}
123 	pm = (char *) a + (n / 2) * es;
124 	if (n > 7) {
125 		pl = (char *) a;
126 		pn = (char *) a + (n - 1) * es;
127 		if (n > 40) {
128 			d = (n / 8) * es;
129 			pl = med3(pl, pl + d, pl + 2 * d, cmp);
130 			pm = med3(pm - d, pm, pm + d, cmp);
131 			pn = med3(pn - 2 * d, pn - d, pn, cmp);
132 		}
133 		pm = med3(pl, pm, pn, cmp);
134 	}
135 	swap(a, pm);
136 	pa = pb = (char *) a + es;
137 
138 	pc = pd = (char *) a + (n - 1) * es;
139 	for (;;) {
140 		while (pb <= pc && (r = cmp(pb, a)) <= 0) {
141 			if (r == 0) {
142 				swap_cnt = 1;
143 				swap(pa, pb);
144 				pa += es;
145 			}
146 			pb += es;
147 		}
148 		while (pb <= pc && (r = cmp(pc, a)) >= 0) {
149 			if (r == 0) {
150 				swap_cnt = 1;
151 				swap(pc, pd);
152 				pd -= es;
153 			}
154 			pc -= es;
155 		}
156 		if (pb > pc)
157 			break;
158 		swap(pb, pc);
159 		swap_cnt = 1;
160 		pb += es;
161 		pc -= es;
162 	}
163 	if (swap_cnt == 0) {  /* Switch to insertion sort */
164 		for (pm = (char *) a + es; pm < (char *) a + n * es; pm += es)
165 			for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0;
166 			     pl -= es)
167 				swap(pl, pl - es);
168 		return;
169 	}
170 
171 	pn = (char *) a + n * es;
172 	r = min(pa - (char *) a, pb - pa);
173 	vecswap(a, pb - r, r);
174 	r = min(pd - pc, pn - pd - es);
175 	vecswap(pb, pn - r, r);
176 	if ((r = pb - pa) > es)
177 		qsort(a, r / es, es, cmp);
178 	if ((r = pd - pc) > es) {
179 		/* Iterate rather than recurse to save stack space */
180 		a = pn - r;
181 		n = r / es;
182 		goto loop;
183 	}
184 /*		qsort(pn - r, r / es, es, cmp);*/
185 }
186