-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP95.cpp
65 lines (59 loc) · 1.4 KB
/
P95.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
#include "header.h"
class Solution {
public:
vector<TreeNode*> generateTrees(int n) {
vector<TreeNode*> r;
if (n<=0) return r;
return gen(n,0);
}
vector<TreeNode*> gen(int n,int offset) {
vector<TreeNode *> ret;
if (n<=0) {
ret.push_back(nullptr);
return ret;
}
if (n==1) {
ret.push_back(new TreeNode(offset+1));
return ret;
}
for (int i=0;i<n;++i) {
auto lef = gen(i,offset);
auto rig = gen(n-i-1,offset+i+1);
for (auto u:lef)
for (auto v:rig) {
auto mid = new TreeNode(offset+i+1);
mid->left = u;
mid->right = v;
ret.push_back(mid);
}
}
return ret;
}
};
void ShowTree(TreeNode *t) {
queue<TreeNode*> q;
q.push(t);
while (!q.empty()) {
auto p = q.front();
if (p)
cout <<p->val<<" ";
else
cout << "null" << " ";
q.pop();
if (p) {
if (p->left || p->right) {
q.push(p->left);
q.push(p->right);
}
}
}
cout <<endl;
return;
}
int main() {
auto ans = Solution().generateTrees(3);
for (auto v:ans) {
ShowTree(v);
cout << endl;
}
}