Recursion

2 problems using this pattern

About this pattern:

Solve problems by breaking them down into smaller instances of the same problem.

Often used with: DFS Tree

Complexity Range

Time Complexity

O(n) (2 problems)

Space Complexity

O(h) (2 problems)

Problems Using Recursion

← Back to All Patterns