⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 radixsort.3

📁 早期freebsd实现
💻 3
字号:
.\" Copyright (c) 1990, 1991, 1993.\"	The Regents of the University of California.  All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\"    notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\"    notice, this list of conditions and the following disclaimer in the.\"    documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\"    must display the following acknowledgement:.\"	This product includes software developed by the University of.\"	California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\"    may be used to endorse or promote products derived from this software.\"    without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\"     @(#)radixsort.3	8.2 (Berkeley) 1/27/94.\".Dd January 27, 1994.Dt RADIXSORT 3.Os.Sh NAME.Nm radixsort.Nd radix sort.Sh SYNOPSIS.Fd #include <limits.h>.Fd #include <stdlib.h>.Ft int.Fn radixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte".Ft int.Fn sradixsort "u_char **base" "int nmemb" "u_char *table" "u_int endbyte".Sh DESCRIPTIONThe.Fn radixsortand.Fn sradixsortfunctionsare implementations of radix sort..PpThese functions sort an array of pointers to byte strings, the initialmember of which is referenced by.Fa base .The byte strings may contain any values; the end of each stringis denoted by the user-specified value.Fa endbyte ..PpApplications may specify a sort order by providing the.Fa tableargument.If.Pf non- Dv NULL , .Fa tablemust reference an array of.Dv UCHAR_MAX+ 1 bytes which contains the sortweight 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.Fa tableargumentis useful for applications which wish to sort different charactersequally, for example, providing a table with the same weightsfor A-Z as for a-z will result in a case-insensitive sort.If.Fa tableis NULL, the contents of the array are sorted in ascending orderaccording to the.Tn ASCIIorder of the byte strings they reference and.Fa endbytehas a sorting weight of 0..PpThe.Fn sradixsortfunction is stable, that is, if two elements compare as equal, theirorder in the sorted array is unchanged.The.Fn sradixsortfunction uses additional memory sufficient to hold.Fa nmembpointers..PpThe.Fn radixsortfunction is not stable, but uses no additional memory..PpThese functions are variants of most-significant-byte radix sorting; inparticular, 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..Sh RETURN VALUESUpon successful completion 0 is returned.Otherwise, \-1 is returned and the global variable .Va errnois set to indicate the error..Sh ERRORS.Bl -tag -width Er.It Bq Er EINVALThe value of the.Fa endbyteelement of.Fa tableis not 0 or 255..El.PpAdditionally, the.Fn sradixsortfunctionmay fail and set.Va errnofor any of the errors specified for the library routine.Xr malloc 3 ..Sh SEE ALSO.Xr sort 1 ,.Xr qsort 3.Pp.Rs.%A Knuth, D.E..%D 1968.%B "The Art of Computer Programming".%T "Sorting and Searching".%V Vol. 3.%P pp. 170-178.Re.Rs.%A Paige, R..%D 1987.%T "Three Partition Refinement Algorithms".%J "SIAM J. Comput.".%V Vol. 16.%N No. 6.Re.Rs.%A McIlroy, P..%D 1993.%B "Engineering Radix Sort".%T "Computing Systems".%V Vol. 6:1.%P pp. 5-27.Re.Sh HISTORYThe.Fn radixsortfunction first appeared in 4.4BSD.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -