Computer Science, asked by sarupsk024, 8 months ago

recursion tree method is used to find *

Answers

Answered by Tejas1582
0

Answer:

A recursion tree is useful for visualizing what happens when a recurrence is iterated. It diagrams the tree of recursive calls and the amount of work done at each call. For instance, consider the recurrence T(n) = 2T(n/2) + n 2.

Explanation:

Similar questions