in Algorithms edited by
486 views
2 votes
2 votes

Let $T(n)=4 T(n / 3)+n^{\log _{3} 4}.$ What will be asymptotic bound on $T(n)?$

  1. $T(n)=\Theta\left(n^{\log _{3} 4} \log n\right)$
  2. $T(n)=\Theta(n \log n)$
  3. $T(n)=\Theta\left(4^{\log _{3} n} \log \log n\right)$
  4. None of these
in Algorithms edited by
486 views

1 Answer

3 votes
3 votes
$T(n)=\Theta\left(n^{\log _{3} 4} \lg n\right)$ by Case $2$ of the Master Method.
Answer:

Related questions