Calculate Complexity of T(n)? [duplicate]
问题 This question already has answers here : T(n) = T(n/10) + T(an) + n, how to solve this? (3 answers) Closed last month . Given: T(n) = T(n/10) + T(an) + n for some a (which I know nothing about its value), and that: T(n) = 1 if n < 10 . I want to check if the following is possible (for some a values, and I want to find the smallest possible a ): For every c > 0 there is n 0 > 0 such that for every n > n 0 , T(n) >= c * n Or in other words T(n)=omega(n) Any help is appreciated. 回答1: Suppose