edited by
463 views

1 Answer

1 votes
1 votes

T(n) = 10T(n/2) + 100n3

a=10, b= 2, k= 3 ,p=0

Here  a > b

So According to Masters theorem (Rule 1)-

T(n) = $\theta$( nlogba  )

            = $\theta$( nlog210)

         =  $\theta$(n3).           ( log210 >3)

Ans- A

         

edited by
Answer:

Related questions

1 votes
1 votes
1 answer
2
0 votes
0 votes
1 answer
3
rajan asked Dec 9, 2016
373 views
how to solve these two using matser thorem.1. t(n)=2t(√n)+n2. t(n)=4t(√n)+(logn)^2
1 votes
1 votes
2 answers
4
vijaycs asked Jul 11, 2016
1,892 views
On which of the following recurrence relation Masters theorem can not be applied ?A. T(n)= 2T(n/2) + n (log n).B. T(n) = T(n/2) + 1.C. T(n) = 8T(n/2) + (log n).D. T(n) = ...