I want to understand how to arrive at the complexity of the below recurrence relation.
T(n) = T(n-1) + T(n-2) + C Given T(1) = C and
T(n) = T(n-1) + T(n-2) + C
T(1) = C
You can use this general approach described here.Please ask if you have more questions.