16. Unique Binary Search Trees II
Last updated
Was this helpful?
Last updated
Was this helpful?
Given an integer n
, return all the structurally unique BST's (binary search trees), which has exactly n
nodes of unique values from 1
to n
. Return the answer in any order.
Example 1:
Example 2:
Approach: Building BST for each n(1 - n)
Time Complexity: (2^n) Maps can be used to optimize