Recursionmedium
0:00.0
A recursive algorithm divides an input of size into two subproblems of size each, with base case when . What is the maximum recursion depth (number of active stack frames at the deepest point, including the deepest call)?
A recursive algorithm divides an input of size into two subproblems of size each, with base case when . What is the maximum recursion depth (number of active stack frames at the deepest point, including the deepest call)?