-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path117.cpp
41 lines (40 loc) · 1.03 KB
/
117.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
// iteration.cpp
/**
* Definition for binary tree with next pointer.
* struct TreeLinkNode {
* int val;
* TreeLinkNode *left, *right, *next;
* TreeLinkNode(int x) : val(x), left(NULL), right(NULL), next(NULL) {}
* };
*/
class Solution {
TreeLinkNode *getFirstChild(TreeLinkNode *&root) {
for (; root; root = root->next) {
if (root->left)
return root->left;
if (root->right)
return root->right;
}
return nullptr;
}
TreeLinkNode *getNext(TreeLinkNode *now, TreeLinkNode *&parent) {
if (parent->left == now && parent->right)
return parent->right;
for (parent = parent->next; parent; parent = parent->next) {
if (parent->left)
return parent->left;
if (parent->right)
return parent->right;
}
return nullptr;
}
public:
void connect(TreeLinkNode *root) {
while (root) {
TreeLinkNode *head = getFirstChild(root);
for (TreeLinkNode *cur = head; cur; cur = cur->next)
cur->next = getNext(cur, root);
root = head;
}
}
};