Question: With python Exercise 1: Counting sort Counting sort is a sorting technique that can be applied to a list holding integers from a certain range.

With python
Exercise 1: Counting sort Counting sort is a sorting technique that can be applied to a list holding integers from a certain range. Suppose that you are given a list of 10 integers and those integers are from the range 0-9. Instead of sorting those numbers directly, you count the frequency of each number and create a frequency list. Then you should use the frequency list to print the numbers in ascending order. Input list: {1,4,1,2,7,5,2,3,9,8} Frequency list: {0,2,2,1,1,1,0,1,1,1} Then looking at the frequencies in frequency list, you should print the numbers in the original list in ascending order. Two 1's: Print 11 Two 2's: Print 22 One 3: Print 3 One 4: Print 4 112234
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
