-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCounting_sort.py
38 lines (29 loc) · 1.31 KB
/
Counting_sort.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
""" Counting sort implementation"""
class Solution:
def counting_sort(self, lst) -> None:
"""
Sorts a list of integers where minimum value is 0 and maximum value is K
"""
K = max(lst)
counts = [0] * (K + 1)
for elem in lst:
counts[elem] += 1
# we now overwrite our original counts with the starting index
# of each element in the final sorted array
starting_index = 0
for i, count in enumerate(counts):
counts[i] = starting_index
starting_index += count
sorted_lst = [0] * len(lst)
for elem in lst:
sorted_lst[counts[elem]] = elem
# since we have placed an item in index counts[elem], we need to
# increment counts[elem] index by 1 so the next duplicate element
# is placed in appropriate index
counts[elem] += 1
# common practice to copy over sorted list into original lst
# it's fine to just return the sorted_lst at this point as well
for i in range(len(lst)):
lst[i] = sorted_lst[i]
#time complexity: O(N+K) where N is the size of the input array and K is the maximum value in the array
#space complexity: O(N+K) since we have to initialize a new array of size N and a counts array of size K+1