2 * qsort.c: standard quicksort algorithm
4 * Modifications from vanilla NetBSD source:
5 * Add do ... while() macro fix
6 * Remove __inline, _DIAGASSERTs, __P
7 * Remove ill-considered "swap_cnt" switch to insertion sort,
8 * in favor of a simple check for presorted input.
10 * CAUTION: if you change this file, see also qsort_arg.c
18 * Copyright (c) 1992, 1993
19 * The Regents of the University of California. All rights reserved.
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 * 3. Neither the name of the University nor the names of its contributors
30 * may be used to endorse or promote products derived from this software
31 * without specific prior written permission.
33 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
34 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
35 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
36 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
37 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
38 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
39 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
40 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
41 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
42 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49 static char *med3(char *a
, char *b
, char *c
,
50 int (*cmp
) (const void *, const void *));
51 static void swapfunc(char *, char *, size_t, int);
54 * Qsort routine based on J. L. Bentley and M. D. McIlroy,
55 * "Engineering a sort function",
56 * Software--Practice and Experience 23 (1993) 1249-1265.
57 * We have modified their original by adding a check for already-sorted input,
58 * which seems to be a win per discussions on pgsql-hackers around 2006-03-21.
60 #define swapcode(TYPE, parmi, parmj, n) \
62 size_t i = (n) / sizeof (TYPE); \
63 TYPE *pi = (TYPE *)(void *)(parmi); \
64 TYPE *pj = (TYPE *)(void *)(parmj); \
72 #define SWAPINIT(a, es) swaptype = ((char *)(a) - (char *)0) % sizeof(long) || \
73 (es) % sizeof(long) ? 2 : (es) == sizeof(long)? 0 : 1;
76 swapfunc(char *a
, char *b
, size_t n
, int swaptype
)
79 swapcode(long, a
, b
, n
);
81 swapcode(char, a
, b
, n
);
85 if (swaptype == 0) { \
86 long t = *(long *)(void *)(a); \
87 *(long *)(void *)(a) = *(long *)(void *)(b); \
88 *(long *)(void *)(b) = t; \
90 swapfunc(a, b, es, swaptype)
92 #define vecswap(a, b, n) if ((n) > 0) swapfunc((a), (b), (size_t)(n), swaptype)
95 med3(char *a
, char *b
, char *c
, int (*cmp
) (const void *, const void *))
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
));
103 pg_qsort(void *a
, size_t n
, size_t es
, int (*cmp
) (const void *, const void *))
117 loop
:SWAPINIT(a
, es
);
120 for (pm
= (char *) a
+ es
; pm
< (char *) a
+ n
* es
; pm
+= es
)
121 for (pl
= pm
; pl
> (char *) a
&& cmp(pl
- es
, pl
) > 0;
127 for (pm
= (char *) a
+ es
; pm
< (char *) a
+ n
* es
; pm
+= es
)
129 if (cmp(pm
- es
, pm
) > 0)
137 pm
= (char *) a
+ (n
/ 2) * es
;
141 pn
= (char *) a
+ (n
- 1) * es
;
145 pl
= med3(pl
, pl
+ d
, pl
+ 2 * d
, cmp
);
146 pm
= med3(pm
- d
, pm
, pm
+ d
, cmp
);
147 pn
= med3(pn
- 2 * d
, pn
- d
, pn
, cmp
);
149 pm
= med3(pl
, pm
, pn
, cmp
);
152 pa
= pb
= (char *) a
+ es
;
153 pc
= pd
= (char *) a
+ (n
- 1) * es
;
156 while (pb
<= pc
&& (r
= cmp(pb
, a
)) <= 0)
165 while (pb
<= pc
&& (r
= cmp(pc
, a
)) >= 0)
180 pn
= (char *) a
+ n
* es
;
181 r
= Min(pa
- (char *) a
, pb
- pa
);
182 vecswap(a
, pb
- r
, r
);
183 r
= Min(pd
- pc
, pn
- pd
- es
);
184 vecswap(pb
, pn
- r
, r
);
185 if ((r
= pb
- pa
) > es
)
186 qsort(a
, r
/ es
, es
, cmp
);
187 if ((r
= pd
- pc
) > es
)
189 /* Iterate rather than recurse to save stack space */
194 /* qsort(pn - r, r / es, es, cmp);*/