843 views
0 votes
0 votes
On which of the following recurrence relation Master Theorem cannot be applied?

a)  T(n)=2T(n/2)+nlogn

b)  T(n)=T(n/2)+1

c)  T(n)=8T(n/2)+logn

d)  T(n)=7T(n/4)+n^2

Please log in or register to answer this question.

Related questions

1.1k
views
1 answers
1 votes
mdboi asked Oct 29, 2022
1,116 views
how do i apply master theorem to this?
849
views
2 answers
1 votes
mdboi asked Oct 28, 2022
849 views
how do i apply master theorem to this? T(n)=2T(n/2)−n^3n
828
views
1 answers
1 votes
mdboi asked Oct 28, 2022
828 views
how do i apply master theorem to this? 𝑇(𝑛)=16𝑇(𝑛/4)+5𝑛^3
3.3k
views
1 answers
1 votes
ItzDc asked Jun 3, 2022
3,321 views
I can't figure out how to proceed and which case it's falling under after calculating h(n)