forked from sachuverma/DataStructures-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02. Unique Binary Search Trees II.cpp
67 lines (56 loc) · 1.53 KB
/
02. Unique Binary Search Trees II.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
Unique Binary Search Trees II
=============================
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:
Input: n = 3
Output: [[1,null,2,null,3],[1,null,3,2],[2,1,3],[3,1,null,null,2],[3,2,null,1]]
Example 2:
Input: n = 1
Output: [[1]]
Constraints:
1 <= n <= 8
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution
{
public:
vector<TreeNode *> dfs(int start, int end)
{
if (start > end)
return {NULL};
if (start == end)
return {new TreeNode(start)};
vector<TreeNode *> ans;
for (int i = start; i <= end; ++i)
{
auto left = dfs(start, i - 1);
auto right = dfs(i + 1, end);
for (auto &l : left)
{
for (auto &r : right)
{
TreeNode *root = new TreeNode(i);
root->left = l;
root->right = r;
ans.push_back(root);
}
}
}
return ans;
}
vector<TreeNode *> generateTrees(int n)
{
return dfs(1, n);
}
};