The running time of an algorithm is represented by the following recurrence relation:
$T(n) = \begin{cases} n & n \leq 3 \\ T(\frac{n}{3})+cn & \text{ otherwise } \end{cases}$
Which one of the following represents the time complexity of the algorithm?
Reveal answer
Fill a bubble to check yourself
$= \theta(n)$