T(n)= 3T(n/2) + 2n2
i.)
a) How many sub problems are in the above recurrence?
b) What the size of each of the sub problems identified
above?
c) What is the work/time needed for non-recursive part (divide
and combine) of the recurrence?
ii) Use the recursive tree technique to obtain the running time
(time complexity) of the above recurrence?
T(n)= 3T(n/2) + 2n2 i.) a) How many sub problems are in the above recurrence? b) What the size of each of the sub proble
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am