retagged by
4,873 views

1 Answer

6 votes
6 votes

T(n)=4T(n/2)+n/logn 

here nlog2 = n2  > n/logn  ( i.e. not log n time big).

 

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

here  nlog2 = n > n/logn  ( i.e.  log n time big). which is not the case of master thoerm but done by extented master theorm.

Related questions

1 votes
1 votes
1 answer
1
1 votes
1 votes
2 answers
2
mdboi asked Oct 28, 2022
781 views
how do i apply master theorem to this? T(n)=2T(n/2)−n^3n
1 votes
1 votes
1 answer
3
1 votes
1 votes
1 answer
4
ItzDc asked Jun 3, 2022
2,985 views
I can't figure out how to proceed and which case it's falling under after calculating h(n)