-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from Raj-sharma01/countSortInPython
added counting sort in python
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
from typing import List | ||
|
||
def sortArray(N: List[int]) -> List[int]: | ||
min_val, max_val = min(N), max(N) | ||
count = [0] * (max_val - min_val + 1) | ||
|
||
for num in N: | ||
count[num - min_val] += 1 | ||
|
||
sorted_array = [] | ||
for i in range(len(count)): | ||
sorted_array.extend([i + min_val] * count[i]) | ||
|
||
return sorted_array | ||
|
||
if __name__ == "__main__": | ||
# Input | ||
n = int(input("Enter the number of elements: ")) | ||
user_input = list(map(int, input("Enter the elements separated by spaces: ").split())) | ||
|
||
# Output the array before sorting | ||
print("Array Before Sorting :-") | ||
print(" ".join(map(str, user_input))) | ||
|
||
# Sort the array | ||
sorted_list = sortArray(user_input) | ||
|
||
# Output the array after sorting | ||
print("Array After Sorting :-") | ||
print(" ".join(map(str, sorted_list))) |