*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.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18SA
icon
Related questions
Question

*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.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Quicksort
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning