C Programming Tutorial
Counting Sort is not a comparison based sorting
Counting Sort assumes each of the elements is an integer
It uses Auxilary spaces 1.for sorted order 2. No.of Distinct Elements in the Array.
/****************************************************************************************** * * This Program Performs Counting Sorting * ******************************************************************************************/
ADS