2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Peter McIlroy and by Dan Bernstein at New York University,
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
37 #if defined(LIBC_SCCS) && !defined(lint)
38 static char sccsid
[] = "@(#)radixsort.c 8.2 (Berkeley) 4/28/95";
39 #endif /* LIBC_SCCS and not lint */
44 * Program r_sort_a() is unstable but uses O(logN) extra memory for a stack.
45 * Use radixsort(a, n, trace, endchar) for this case.
47 * For stable sorting (using N extra pointers) use sradixsort(), which calls
50 * For a description of this code, see D. McIlroy, P. McIlroy, K. Bostic,
51 * "Engineering Radix Sort".
54 #include <sys/types.h>
58 #include <errno_private.h>
65 static inline void simplesort(u_char
const **, int, int, u_char
const *, u_int
);
66 static void r_sort_a(u_char
const **, int, int, u_char
const *, u_int
);
67 static void r_sort_b(u_char
const **, u_char
const **, int, int, u_char
const *, u_int
);
69 #define THRESHOLD 20 /* Divert to simplesort(). */
70 #define SIZE 512 /* Default stack size. */
75 for (c = 0; c < endch; c++) \
78 for (c++; c < 256; c++) \
84 if (endch != 0 && endch != 255) { \
85 /* __set_errno(EINVAL); */ \
92 radixsort(u_char
const **a
, int n
, u_char
const *tab
, u_int endch
)
99 r_sort_a(a
, n
, 0, tr
, endch
);
104 sradixsort(u_char
const **a
, int n
, u_char
const *tab
, u_int endch
)
113 simplesort(a
, n
, 0, tr
, endch
);
115 if ((ta
= malloc(n
* sizeof(a
))) == NULL
)
117 r_sort_b(a
, ta
, n
, 0, tr
, endch
);
123 #define empty(s) (s >= sp)
124 #define pop(a, n, i) a = (--sp)->sa, n = sp->sn, i = sp->si
125 #define push(a, n, i) sp->sa = a, sp->sn = n, (sp++)->si = i
126 #define swap(a, b, t) t = a, a = b, b = t
128 /* Unstable, in-place sort. */
130 r_sort_a(u_char
const **a
, int n
, int i
, u_char
const *tr
, u_int endch
)
132 static u_int count
[256];
148 u_char
const **top
[256];
156 simplesort(a
, n
, i
, tr
, endch
);
161 /* Make character histogram. */
163 bmin
= 255; /* First occupied bin, excluding eos. */
164 for (ak
= a
; ak
< an
;) {
166 if (++count
[c
] == 1 && c
!= endch
) {
172 if (sp
+ nc
> s
+ SIZE
) { /* Get more stack. */
173 r_sort_a(a
, n
, i
, tr
, endch
);
179 * Set top[]; push incompletely sorted bins onto stack.
180 * top[] = pointers to last out-of-place element in bins.
181 * count[] = counts of elements in bins.
182 * Before permuting: top[c-1] + count[c] = top[c];
183 * during deal: top[c] counts down to top[c-1].
185 sp0
= sp1
= sp
; /* Stack position of biggest bin. */
186 bigc
= 2; /* Size of biggest bin. */
187 if (endch
== 0) /* Special case: set top[eos]. */
188 top
[0] = ak
= a
+ count
[0];
193 for (cp
= count
+ bmin
; nc
> 0; cp
++) {
194 while (*cp
== 0) /* Find next non-empty pile. */
203 top
[cp
-count
] = ak
+= *cp
;
206 swap(*sp0
, *sp1
, temp
); /* Play it safe -- biggest bin last. */
209 * Permute misplacements home. Already home: everything
210 * before aj, and in bin[c], items from top[c] on.
212 * r = next element to put in place;
213 * ak = top[r[i]] = location to put the next element.
214 * aj = bottom of 1st disordered bin.
216 * Once the 1st disordered bin is done, ie. aj >= ak,
217 * aj<-aj + count[c] connects the bins in a linked list;
220 for (aj
= a
; aj
< an
; *aj
= r
, aj
+= count
[c
], count
[c
] = 0)
221 for (r
= *aj
; aj
< (ak
= --top
[c
= tr
[r
[i
]]]);)
226 /* Stable sort, requiring additional memory. */
229 r_sort_b(u_char
const **a
, u_char
const **ta
, int n
, int i
, u_char
const *tr
, u_int endch
)
231 static int count
[256];
235 u_char
const **ak
, **ai
;
236 stack s
[512], *sp
, *sp0
, *sp1
, temp
;
237 u_char
const **top
[256];
246 simplesort(a
, n
, i
, tr
, endch
);
252 for (ak
= a
+ n
; --ak
>= a
;) {
254 if (++count
[c
] == 1 && c
!= endch
) {
260 if (sp
+ nc
> s
+ SIZE
) {
261 r_sort_b(a
, ta
, n
, i
, tr
, endch
);
269 top
[0] = ak
= a
+ count
[0];
276 for (cp
= count
+ bmin
; nc
> 0; cp
++) {
286 top
[cp
-count
] = ak
+= c
;
287 *cp
= 0; /* Reset count[]. */
290 swap(*sp0
, *sp1
, temp
);
292 for (ak
= ta
+ n
, ai
= a
+n
; ak
> ta
;) /* Copy to temp. */
294 for (ak
= ta
+n
; --ak
>= ta
;) /* Deal to piles. */
295 *--top
[tr
[(*ak
)[i
]]] = *ak
;
301 simplesort(u_char
const **a
, int n
, int b
, u_char
const *tr
, u_int endch
) /* insertion sort */
309 for (ak
= a
+1; --n
>= 1; ak
++) {
310 for (ai
= ak
; ai
> a
; ai
--) {
311 for (s
= ai
[0] + b
, t
= ai
[-1] + b
;
312 (ch
= tr
[*s
]) != endch
; s
++, t
++)
317 swap(ai
[0], ai
[-1], s
);