#include int get_max( int arr[], int n){ int myMax = -1 ; for(int i=0; i myMax)myMax = arr[i] ; } return myMax ; } void count_sort(int arr[], int n, int digit){ int count[10] = {0} ; int *sorted ; sorted = (int*)malloc(n * sizeof(int)); for(int i=0; i=0; i--){ sorted[--count[(arr[i]/digit)%10]] = arr[i] ; } for(int i=0; i