Query: qsort
OS: hpux
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
qsort(3C) qsort(3C)NAMEqsort() - quicksortSYNOPSISDESCRIPTIONis an implementation of the quicksort algorithm. It sorts a table of data in place. base Pointer to the element at the base of the table. nel Number of elements in the table. size Size of each element in the table. compar Name of the comparison function, which is called with two arguments that point to the elements being compared. The function passed as compar must return an integer less than, equal to, or greater than zero, according to whether its first argument is to be considered less than, equal to, or greater than the second. uses this same return convention (see string(3C)).NOTESThe pointer to the base of the table should be of type pointer-to-element, and cast to type pointer-to-void. The comparison function need not compare every byte; thus, arbitrary data can be contained in the elements in addition to the values being compared. The order in the output of two items which compare as equal is unpredictable.WARNINGSIf size is zero, a divide-by-zero error might be generated.SEE ALSOsort(1), bsearch(3C), lsearch(3C), string(3C), thread_safety(5).STANDARDS CONFORMANCEqsort(3C)
Related Man Pages |
---|
qsort(3c) - opensolaris |
bsearch(3c) - sunos |
lsearch(3) - ultrix |
lfind(3c) - hpux |
lsearch(3c) - hpux |
Similar Topics in the Unix Linux Community |
---|
comparison between pointer and integer |
fail on comparison |
String comparison problem |
Qsort Error |
DB2 in awk |