radixsort(3)

NAME

     radixsort, sradixsort --- radix sort

LIBRARY

     Utility functions from BSD systems (libbsd, -lbsd)

SYNOPSIS

     #include <limits.h>
     #include <bsd/stdlib.h>

     int
     radixsort(const unsigned char **base, int nmemb,
     const unsigned char *table, unsigned endbyte);

     int
     sradixsort(const unsigned char **base, int nmemb,
     const unsigned char *table, unsigned endbyte);

DESCRIPTION

     The radixsort() and sradixsort() functions are implementations of radix
     sort.

     These functions sort an nmemb element array of pointers to byte strings,
     with the initial member of which is referenced by base.  The byte strings
     may contain any values.  End of strings is denoted by character which has
     same weight as user specified value endbyte.  endbyte has to be between 0
     and 255.

     Applications may specify a sort order by providing the table argument.
     If non-NULL, table 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 which wish to 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() function is stable, that is, if two elements compare as
     equal, their order in the sorted array is unchanged.  The sradixsort()
     function uses additional memory sufficient to hold nmemb pointers.

     The radixsort() 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

     The radixsort() function returns the value 0 if successful; otherwise the
     value -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() function may fail and set errno for any of
     the errors specified for the library routine malloc(3).

SEE ALSO

     sort(1), qsort(3)

     Knuth, D.E., "Sorting and Searching", The Art of Computer Programming,
     Vol. 3, pp. 170-178, 1968.

     Paige, R., "Three Partition Refinement Algorithms", SIAM J. Comput., No.
     6, Vol. 16, 1987.

     McIlroy, P., "Computing Systems", Engineering Radix Sort, Vol. 6:1, pp.
     5-27, 1993.

HISTORY

     The radixsort() function first appeared in 4.4BSD.



Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.


Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.

Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.


Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.

Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.


Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.

Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.