-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathtree.cpp
90 lines (90 loc) · 1.93 KB
/
tree.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <queue>
#include <stack>
using namespace std;
struct TreeLinkNode {
int val;
TreeLinkNode *left;
TreeLinkNode *right;
TreeLinkNode *next;
TreeLinkNode(int x) : val(x), left(nullptr), right(nullptr), next(nullptr){}
};
struct Bucket {
TreeLinkNode *node;
int level;
Bucket(TreeLinkNode *p, int l) : node(p), level(l){}
};
class Solution {
public:
void connect(TreeLinkNode *root) {
if (root == nullptr)
return;
TreeLinkNode *p = root;
while (p->left) {
TreeLinkNode *q = p;
while (q) {
q->left->next = q->right;
if (q->next) {
q->right->next = q->next->left;
}
q = q->next;
}
p = p->left;
}
}
/*
void connect(TreeLinkNode *root) {
if (root == nullptr)
return;
queue<Bucket> q;
q.push(Bucket(root, 0));
while (!q.empty()) {
Bucket current = q.front();
TreeLinkNode *p = current.node;
int level = current.level;
q.pop();
if (!q.empty()) { // 注意检查是否还有节点
Bucket next = q.front();
if (current.level == next.level) {
p->next = next.node;
}
}
if (p->left)
q.push(Bucket(p->left, level + 1));
if (p->right)
q.push(Bucket(p->right, level + 1));
}
}
*/
};
TreeLinkNode *mk_node(int val)
{
return new TreeLinkNode(val);
}
TreeLinkNode *mk_child(TreeLinkNode *root, TreeLinkNode *left, TreeLinkNode *right)
{
root->left = left;
root->right = right;
return root;
}
TreeLinkNode *mk_child(TreeLinkNode *root, int left, int right)
{
return mk_child(root, new TreeLinkNode(left), new TreeLinkNode(right));
}
TreeLinkNode *mk_child(int root, int left, int right)
{
return mk_child(new TreeLinkNode(root), new TreeLinkNode(left), new TreeLinkNode(right));
}
int main(int argc, char **argv)
{
Solution solution;
TreeLinkNode *root = mk_child(0,1,2);
mk_child(root->left, 3, 4);
mk_child(root->right, 5,6);
solution.connect(root);
return 0;
}