Counting sort is special sorting technique used to sort elements between
specific range. Lets say elements belong to range 1 to K , then Counting
sort can be used to sort elements in O(N) times.
Basic idea of counting sort to find number of elements less than X, so X can be put to its correct position
Steps for Counting Sort:
import java.util.Arrays; public class CountingSortMain { public static void main(String[] args) { System.out.println("Before Sorting : "); int arr[] = { 1, 4, 7, 3, 4, 5, 6, 3, 4, 8, 6, 4, 4 }; System.out.println(Arrays.toString(arr)); arr = countingSort(arr); System.out.println("======================="); System.out.println("After Sorting : "); System.out.println(Arrays.toString(arr)); } static int[] countingSort(int arr[]) { int n = arr.length; // The result will store sorted array int result[] = new int[n]; // Initialize count array with 9 as array contains elements from range 1 to 8. int count[] = new int[9]; for (int i = 0; i < 9; ++i) count[i] = 0; // store count of each element in count array for (int i = 0; i < n; ++i) ++count[arr[i]]; // Change count[i] so that count[i] now contains actual // position of this element in output array for (int i = 1; i <= 8; ++i) count[i] += count[i - 1]; for (int i = 0; i < n; ++i) { result[count[arr[i]] - 1] = arr[i]; --count[arr[i]]; } return result; } }