Solve recurrence: T(n) = T(n^(1/2)) + Θ(lg lg n) [closed]
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . Started learning algorithms. I understand how to find theta-notation from a 'regular recurrence' like T(n) = Tf(n) + g(n) . But I am lost with this recurrence: problem 1-2e: T(n) = T(√n) + Θ(lg lg n) How do I choose the method to find theta? And what, uh, this recurrence is? I just do not quite understand notation