Index of Section 3 Manual Pages
| Interix / SUA | radixsort.3 | Interix / SUA |
radixsort(3) radixsort(3)
radixsort()
NAME
radixsort() - radix sort
SYNOPSIS
#include
#include
int radixsort (u_char **base, int nmemb, u_char *table,
u_int endbyte)
int sradixsort (u_char **base, int nmemb, u_char *table,
u_int endbyte)
DESCRIPTION
The radixsort(3) and sradixsort(3) functions are implementations of radix
sort.
These functions sort an array of pointers to byte strings, the initial
member of which is referenced by base. The byte strings may contain any
values; the end of each string is denoted by the user-specified value
endbyte.
Applications may specify a sort order by providing the table argument. If
table is not NULL, it must reference an array of {UCHAR_MAX}+1 bytes which
contains the sort weight of each possible byte value. The end-of-string
byte must have a sort weight of 0 or 255 (for sorting in reverse order).
More than one byte may have the same sort weight. The table argument is
useful for applications that would sort different characters equally, for
example, providing a table with the same weights for A-Z as for a-z will
result in a case-insensitive sort. If table is NULL, the contents of the
array are sorted in ascending order according to the ASCII order of the
byte strings they reference and endbyte has a sorting weight of 0.
The sradixsort(3) function is stable, that is, if two elements compare as
equal, their order in the sorted array is unchanged. The sradixsort(3)
function uses additional memory sufficient to hold nmemb pointers.
The radixsort(3) function is not stable, but uses no additional memory.
These functions are variants of most-significant-byte radix sorting; in
particular, see D.E. Knuth's Algorithm R and section 5.2.5, exercise 10.
They take linear time relative to the number of bytes in the strings.
RETURN VALUES
Upon successful completion 0 is returned. Otherwise, -1 is returned and
the global variable errno is set to indicate the error.
ERRORS
[EINVAL]
The value of the endbyte element of table is not 0 or 255.
Additionally, the sradixsort(3) function may fail and set errno for any of
the errors specified for the library routine malloc(3).
SEE ALSO
sort(1)
qsort(3)
USAGE NOTES
All of these functions are thread safe.
None of these functions are async-signal safe.