void countingSort(int a[], int size, int max, int min) { int temp[max - min + 1]; for (int i = 0; i < size; i++) temp[a[i] - min] = temp[a[i] - min] + 1; //Cou