Question: If recurrence relation for 4-way merge sort is T(n) = 4T(n/4) + O(n) solve according to Master Theorem. I think complexity of this algorithm is
If recurrence relation for 4-way merge sort is
T(n) = 4T(n/4) + O(n)
solve according to Master Theorem. I think complexity of this algorithm is (nlog_4(n)),
please show steps and explanation. thank you.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
