Python Program for Counting Sort
Counting sort is a linear-time sorting method for sorting items in an array. In this tutorial, we will sort an array with help of the counting sort operation.
Counting Sort - Basic Introduction
Counting sort is a sorting algorithm that sorts an array's items by counting the number of times each unique element appears in the array. The count is saved in an auxiliary array, and sorting is accomplished by mapping the count to an auxiliary array index. It operates by determining the number of items with unique key values (kind of hashing). Let us now have a rough understanding of how counting sort is performed:
- Find maximum element from a given array.
- Initialize array length with all elements 0. This will be used for sorting count elements.
- Store count of each element with respect to their index
- Keep track of the total sum of the count array's items.
- In the count array, get the index of each element in the original array. This tells you the total number of items. Place the element at the computed index, as indicated in the diagram below.
- After completing all these steps, decrease the count by 1
- The resulting array will be sorted one.
Algorithm
As of now, we have a rough understanding of how counting sort is performed. For better understanding let's dive deep into the algorithm followed by the code:
- Define a function Counting_Sort()
- Pass the array parameter to the function
- Initialize count array
- Store count of each element in count array
- Find the index of each element in the original array
- Place the element in the count array
- Copy sorted element in the count array
- The array is sorted now
- Print the resulting array
Program for Counting Sort(Array)
As discussed above in the algorithm, let us now dive into the programming part of the Counting Sort operation influenced by the algorithm.
def Counting_Sort(arr):
s = len(arr)
result = [0] * s
# count array
count = [0] * 10
for i in range(0, s):
count[arr[i]] += 1
# cummulative count
for i in range(1, 10):
count[i] += count[i - 1]
# place the elements in output array
i = s - 1
while i >= 0:
result[count[arr[i]] - 1] = arr[i]
count[arr[i]] -= 1
i -= 1
# Copy sorted elements
for i in range(0, s):
arr[i] = result[i]
#driver code
array = [9, 8, 4, 5, 8, 9, 3, 2, 3, 1]
print("The original array is: ", array)
Counting_Sort(array)
print("Array after sorting is: ", array)
The original array is: [9, 8, 4, 5, 8, 9, 3, 2, 3, 1]
Array after sorting is: [1, 2, 3, 3, 4, 5, 8, 8, 9, 9]
Program for Counting Sort(Characters)
As we have sorted an array we can also sort characters with help of counting sort:
def Counting_Sort(array):
result = [0 for a in range(len(array))]
count = [0 for a in range(256)]
# string is immutable
answer = ["" for _ in array]
# Store count
for a in array:
count[ord(a)] += 1
for a in range(256):
count[a] += count[a-1]
# output character array
for a in range(len(array)):
result[count[ord(array[a])]-1] = array[a]
count[ord(array[a])] -= 1
# Copy the output array
for a in range(len(array)):
answer[a] = result[a]
return answer
# Driver program
array = "shubhsinha"
print("The original array is:", array)
ans = Counting_Sort(array)
print("Character array after sorting is % s" %("".join(ans)))
The original array is: shubhsinha
Character array after sorting is abhhhinssu
Conclusion
In this tutorial, we have performed a Counting Sort operation in python to sort an array. Counting sort is used when there are smaller integers with multiple counts. The best-case complexity of bubble sort is O(n+k) and the space complexity of bubble sort is O(max).