Skip to content

Commit

Permalink
Merge pull request ZoranPandovski#1073 from ank47197/patch-1
Browse files Browse the repository at this point in the history
Readme
  • Loading branch information
ZoranPandovski authored Oct 2, 2018
2 parents 6752ed9 + 45303c7 commit 6010bd5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sort/counting_sort/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
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 doing some arithmetic to calculate the position of each object in the output sequence.

Points to be noted:
1. Counting sort is efficient if the range of input data is not significantly greater than the number of objects to be sorted. Consider the situation where the input sequence is between range 1 to 10K and the data is 10, 5, 10K, 5K.
2. It is not a comparison based sorting. It running time complexity is O(n) with space proportional to the range of data.
3. It is often used as a sub-routine to another sorting algorithm like radix sort.
4. Counting sort uses a partial hashing to count the occurrence of the data object in O(1).
5. Counting sort can be extended to work for negative inputs also.

0 comments on commit 6010bd5

Please sign in to comment.