15. Unique Binary Search Trees
Last updated
Last updated
Given an integer n
, return the number of structurally unique BST's (binary search trees) which has exactly n
nodes of unique values from 1
to n
.
Example 1:
Example 2:
If we take a no of as root as its left subtree has 3 combinations and right subtree has 4 combinations total combinations for R = 3 * 4
If total no of nodes are 4 We can make each node as root once and count the combinations and add them.