Question

Recurrence relations are commonly used to analyze the time complexity of Divide and Conquer algorithms. The Master Theorem is a tool for solving these. What does a typical recurrence relation for Divide and Conquer look like?

A T(N) = T(N-1) + C
B T(N) = aT(N/b) + f(N)
C T(N) = T(N-1) + T(N-2)
D T(N) = N T(N-1)
E T(N) = C
Practice Next

Hey! Ask a query