CST 370 Week 7 Learning Journal Entry
Non-comparison Sorting, Dynamic programming, and the Greedy Technique Non-Comparison Sorting Non-comparison sorting is when sorting happens without comparing elements to each other. One method discussed this week is the counting sort. In counting sort, the frequency and distribution of elements are calculated for a set of inputs, and they are used to sort them in ascending or descending order. Below are the steps to complete a counting sort and an example of using a counting sort to place a set of integers in ascending order. Create a table with a range of values and the frequency of each value. Calculate the distribution of each element by adding up the frequency of the current element to the previous element. Start with the last number in the original list of values and use the distribution to place an element in a specific position in an array Reduce the distribution for that element Repeat steps 3-4 for the next element in the list. Counting Sort ...