Counting sort

Counting sort is a sorting technique based on keys between a specific range. It works by counting the number of objects having distinct key values (kind of hashing). Then do some arithmetic to calculate the position of each object in the output sequence. 

Working of Counting Sort algorithm:

Consider the array: arr[] = {1, 4, 1, 2, 7, 5, 2}.

  • Input data: {1, 4, 1, 2, 7, 5, 2}
  • Take a count array to store the count of each unique object.
  • Now, store the count of each unique element in the count array
  • If any element repeats itself, simply increase its count.

  • Here, the count of each unique element in the count array is as shown below:
    • Index:     0  1  2  3  4  5  6  7  8  9
    • Count:    0  2  2  0   1  1  0  1  0  0

  • Modify the count array such that each element at each index stores the sum of previous counts.
    • Index:      0  1  2  3  4  5  6  7  8  9
    • Count:     0  2  4  4  5  6  6  7  7  7
  • The modified count array indicates the position of each object in the output sequence.
  • Find the index of each element of the original array in the count array. This gives the cumulative count.

  • Rotate the array clockwise for one time.
    • Index:     0 1 2 3 4 5 6 7 8 9 
    • Count:     0 0 2 4 4 5 6 6 7 7

 

  •   Output each object from the input sequence followed by increasing its count by 1.
  •   Process the input data: 1, 4, 1, 2, 7, 5, 2. Position of 1 is 0.
  •   Put data 1 at index 0 in output. Increase count by 1 to place next data 1 at an index 1 greater than this index.

  • After placing each element at its correct position, decrease its count by one.

Introduction to Sorting Techniques – Data Structure and Algorithm Tutorials

Sorting refers to rearrangement of a given array or list of elements according to a comparison operator on the elements. The comparison operator is used to decide the new order of elements in the respective data structure.

When we have a large amount of data, it can be difficult to deal with it, especially when it is arranged randomly. When this happens, sorting that data becomes crucial. It is necessary to sort data in order to make searching easier.

Similar Reads

Types of Sorting Techniques

There are various sorting algorithms are used in data structures. The following two types of sorting algorithms can be broadly classified:...

Why Sorting Algorithms are Important

The sorting algorithm is important in Computer Science because it reduces the complexity of a problem. There is a wide range of applications for these algorithms, including searching algorithms, database algorithms, divide and conquer methods, and data structure algorithms....

Some of the most common sorting algorithms are:

Below are some of the most common sorting algorithms:...

1. Selection sort

Selection sort is another sorting technique in which we find the minimum element in every iteration and place it in the array beginning from the first index. Thus, a selection sort also gets divided into a sorted and unsorted subarray....

2. Bubble sort

Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity is quite high....

3. Insertion Sort

Insertion sort is a simple sorting algorithm that works similarly to the way you sort playing cards in your hands. The array is virtually split into a sorted and an unsorted part. Values from the unsorted part are picked and placed at the correct position in the sorted part....

4. Merge Sort

The Merge Sort algorithm is a sorting algorithm that is based on the Divide and Conquers paradigm. In this algorithm, the array is initially divided into two equal halves and then they are combined in a sorted manner....

5. Quick sort

Quicksort is a sorting algorithm based on the divide and conquer approach where an array is divided into subarrays by selecting a pivot element (element selected from the array)....

6. Heap sort

Heap sort is a comparison-based sorting technique based on Binary Heap data structure. It is similar to the selection sort where we first find the minimum element and place the minimum element at the beginning. Repeat the same process for the remaining elements....

7. Counting sort

Counting sort is a sorting technique based on keys between a specific range. It works by counting the number of objects having distinct key values (kind of hashing). Then do some arithmetic to calculate the position of each object in the output sequence....

Some other Sorting algorithms:

1. Radix sort...

Comparison of Complexity Analysis Between Sorting Algorithms:

NameBest Case  Average Case  Worst Case MemoryStable   Method UsedQuick Sort[Tex]n log n[/Tex][Tex]n log n[/Tex][Tex]n^{2}[/Tex][Tex]log n[/Tex]NoPartitioningMerge Sort[Tex]n log n[/Tex][Tex]n log n[/Tex][Tex]n log n[/Tex]nYesMergingHeap Sort[Tex]n log n[/Tex][Tex]n log n[/Tex][Tex]n log n[/Tex]1NoSelectionInsertion Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesInsertionTim Sortn[Tex]n log n[/Tex][Tex]n log n[/Tex]nYesInsertion & MergingSelection Sort[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1NoSelectionShell Sort[Tex]n log n[/Tex][Tex]n^{4/3}[/Tex][Tex]n^{3/2}[/Tex]1NoInsertionBubble Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesExchangingTree Sort[Tex]n log n[/Tex][Tex]n log n[/Tex][Tex]n log n[/Tex]nYesInsertionCycle Sort[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1NoSelectionStrand Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]nYesSelectionCocktail Shaker Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesExchangingComb Sort[Tex]n log n[/Tex][Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1NoExchangingGnome Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesExchangingOdd–even Sortn[Tex]n^{2}[/Tex][Tex]n^{2}[/Tex]1YesExchanging...

Contact Us