Problem Description
Given an integer n, return all the structurally unique BSTs (binary search trees), which has exactly n nodes of unique values from 1 to n. Return the answer in any order.
Key Insights
- Each number from 1 to n can serve as the root of the BST.
- The numbers to the left of the root must be less than the root, and the numbers to the right must be greater.
- We can use recursion to generate all possible left and right subtrees for each root.
- The unique structures can be built by combining the left and right subtrees for each choice of root.
Space and Time Complexity
Time Complexity: O(4^n / sqrt(n)) - This is because the number of unique BSTs grows exponentially with n. Space Complexity: O(n) - This is the space used by the recursion stack.
Solution
To solve the problem, we will use a recursive backtracking approach. The algorithm involves the following steps:
- Define a recursive function that generates BSTs for a given range of values.
- For each value in the range, consider it as the root of the BST.
- Recursively generate all possible left subtrees using values less than the root.
- Recursively generate all possible right subtrees using values greater than the root.
- Combine each left and right subtree with the current root to form unique BSTs.
- Return the list of generated BSTs.
The main data structures used are lists to hold the generated trees and a tree node structure for representing the BST.