*Data Structures and Algorithm Professor Holmes came up with the idea of a sorting algorithm that he calls Trinary Sort which he claims is asymptotically faster than merge sort, despite being similar in logic. Unlike merge sort, trinary sort splits the input list into three roughly equal parts at each step of the recursion as long as the list is splittable (i.e., has at least 3 elements in this case). The merge operation, similar to what it does in mergeSort, takes three already sorted subarrays, and merges them. (a) In merge sort, merge operation makes exactly n−1 comparisons in total to merge two lists of size n/2 in the worst case, which takes O(n) time. How many comparisons will the merge operation of Trinary sort make in the worst case to merge three sublists of size (n/3) (give an exact number)? Why? What would be the asymptotic bound? (b) What is the total running time of the Trinary Search algorithm? Show it using the tree expansion method.
*Data Structures and
Professor Holmes came up with the idea of a sorting algorithm that he calls Trinary Sort which he claims is asymptotically faster than merge sort, despite being similar in logic. Unlike merge sort, trinary sort splits the input list into three roughly equal parts at each step of the recursion as long as the list is splittable (i.e., has at least 3 elements in this case). The merge operation, similar to what it does in mergeSort, takes three already sorted subarrays, and merges them.
(a) In merge sort, merge operation makes exactly n−1 comparisons in total to merge two lists of size n/2 in the worst case, which takes O(n) time. How many comparisons will the merge operation of Trinary sort make in the worst case to merge three sublists of size (n/3) (give an exact number)? Why? What would be the asymptotic bound?
(b) What is the total running time of the Trinary Search algorithm? Show it using the tree expansion method.

Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images









