Problem Description
Given an integer n, return the number of structurally unique BSTs (binary search trees) which have exactly n nodes of unique values from 1 to n.
Key Insights
- The number of unique BSTs can be calculated using Catalan numbers.
- A BST with n nodes has a root node and left and right subtrees.
- For each node i (1 to n), the number of unique BSTs can be calculated by considering i as the root and multiplying the number of unique BSTs formed by the left and right subtrees.
- This leads to a recursive formula: C(n) = ∑ (C(i-1) * C(n-i)) for i from 1 to n, where C(0) = 1.
Space and Time Complexity
Time Complexity: O(n^2)
Space Complexity: O(n)
Solution
To solve the problem, we can use dynamic programming to build up the number of unique BSTs for each number of nodes from 1 to n. We use an array to store the results of subproblems, where each index represents the number of nodes. The final result will be stored in the last index of the array.