Remove building with NOCRYPTO option
[minix.git] / lib / libc / stdlib / radixsort.3
blob109466abaa51f61795ff6bdd29af3c92e4ebc97b
1 .\"     $NetBSD: radixsort.3,v 1.13 2003/08/07 16:43:43 agc Exp $
2 .\"
3 .\" Copyright (c) 1990, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     from: @(#)radixsort.3   8.2 (Berkeley) 1/27/94
31 .\"
32 .Dd January 27, 1994
33 .Dt RADIXSORT 3
34 .Os
35 .Sh NAME
36 .Nm radixsort ,
37 .Nm sradixsort
38 .Nd radix sort
39 .Sh LIBRARY
40 .Lb libc
41 .Sh SYNOPSIS
42 .In limits.h
43 .In stdlib.h
44 .Ft int
45 .Fn radixsort "const u_char **base" "int nmemb" "u_char *table" "u_int endbyte"
46 .Ft int
47 .Fn sradixsort "const u_char **base" "int nmemb" "u_char *table" "u_int endbyte"
48 .Sh DESCRIPTION
49 The
50 .Fn radixsort
51 and
52 .Fn sradixsort
53 functions
54 are implementations of radix sort.
55 .Pp
56 These functions sort an
57 .Fa nmemb
58 element array of pointers to byte strings, with
59 the initial member of which is referenced by
60 .Fa base .
61 The byte strings may contain any values.
62 End of strings is denoted
63 by character which has same weight as user specified value
64 .Fa endbyte .
65 .Fa endbyte
66 has to be between 0 and 255.
67 .Pp
68 Applications may specify a sort order by providing the
69 .Fa table
70 argument.
72 .Pf non- Dv NULL ,
73 .Fa table
74 must reference an array of
75 .Dv UCHAR_MAX
76 + 1 bytes which contains the sort
77 weight of each possible byte value.
78 The end-of-string byte must have a sort weight of 0 or 255
79 (for sorting in reverse order).
80 More than one byte may have the same sort weight.
81 The
82 .Fa table
83 argument
84 is useful for applications which wish to sort different characters
85 equally, for example, providing a table with the same weights
86 for A-Z as for a-z will result in a case-insensitive sort.
88 .Fa table
89 is NULL, the contents of the array are sorted in ascending order
90 according to the
91 .Tn ASCII
92 order of the byte strings they reference and
93 .Fa endbyte
94 has a sorting weight of 0.
95 .Pp
96 The
97 .Fn sradixsort
98 function is stable, that is, if two elements compare as equal, their
99 order in the sorted array is unchanged.
101 .Fn sradixsort
102 function uses additional memory sufficient to hold
103 .Fa nmemb
104 pointers.
107 .Fn radixsort
108 function is not stable, but uses no additional memory.
110 These functions are variants of most-significant-byte radix sorting; in
111 particular, see D.E. Knuth's Algorithm R and section 5.2.5, exercise 10.
112 They take linear time relative to the number of bytes in the strings.
113 .Sh RETURN VALUES
114 Upon successful completion 0 is returned.
115 Otherwise, \-1 is returned and the global variable
116 .Va errno
117 is set to indicate the error.
118 .Sh ERRORS
119 .Bl -tag -width Er
120 .It Bq Er EINVAL
121 The value of the
122 .Fa endbyte
123 element of
124 .Fa table
125 is not 0 or 255.
128 Additionally, the
129 .Fn sradixsort
130 function
131 may fail and set
132 .Va errno
133 for any of the errors specified for the library routine
134 .Xr malloc 3 .
135 .Sh SEE ALSO
136 .Xr sort 1 ,
137 .Xr qsort 3
140 .%A Knuth, D.E.
141 .%D 1968
142 .%B "The Art of Computer Programming"
143 .%T "Sorting and Searching"
144 .%V Vol. 3
145 .%P pp. 170-178
148 .%A Paige, R.
149 .%D 1987
150 .%T "Three Partition Refinement Algorithms"
151 .%J "SIAM J. Comput."
152 .%V Vol. 16
153 .%N No. 6
156 .%A McIlroy, P.
157 .%D 1993
158 .%B "Engineering Radix Sort"
159 .%T "Computing Systems"
160 .%V Vol. 6:1
161 .%P pp. 5-27
163 .Sh HISTORY
165 .Fn radixsort
166 function first appeared in
167 .Bx 4.4 .