Solving the recurrence T(n) = T(n / 2) + O(1) using the Master Theorem? [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 6 years ago . I'm trying to solve a recurrence relation to find out the complexity of an algorithm using the Master Theorem and its recurrences concepts, how can I prove that: T(n) = T(n/2)+O(1) is T(n) = O(log(n)) ? Any explanation would be apprecciated!! 回答1: Your recurrence is T(n) = T(n / 2) + O(1) Since the Master