forked from walkccc/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0095.cpp
41 lines (37 loc) · 1016 Bytes
/
0095.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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<TreeNode*> generateTrees(int n) {
if (n == 0) return {};
return helper(1, n);
}
private:
vector<TreeNode*> helper(int min, int max) {
vector<TreeNode*> ans;
if (min > max) {
ans.push_back(NULL);
return ans;
}
for (int i = min; i <= max; i++) {
vector<TreeNode*> leftTree = helper(min, i - 1);
vector<TreeNode*> rightTree = helper(i + 1, max);
for (auto left : leftTree) {
for (auto right : rightTree) {
TreeNode* root = new TreeNode(i);
root->left = left;
root->right = right;
ans.push_back(root);
}
}
}
return ans;
}
};