Are there any built in functions in C programming language for sorting arrays? Or do I have to write my own functions?
|
Check out qsort Syntax:
Description: The |
|||||||
|
|
qsort is well known. There are others also like heapsort, mergesort etc. Please check the link for more details. Please note that all of them take comparison functions as input, making them easily usable with native as well as user created data types. |
|||||
|
|
You can use You can use this to sort any kind of array (even |
|||||||||
|
qsortinstdlib.h– nhahtdh Jul 17 '12 at 14:35bsearch(3)is another libc routine in the same vein asqsort(3)that many people do not know about. (Often, they are used together: you need to sort your array before binary searching it. =)) – Conrad Meyer Jul 17 '12 at 15:24