forked from dmamaril/LeetCode-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
117. Populating Next Right Pointers in Each Node II.cpp
54 lines (46 loc) · 1.36 KB
/
117. Populating Next Right Pointers in Each Node 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
/**
* 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) {}
* };
1 -> nullptr
/ \
parent 2 -> 3 -> nullptr
/ \ \
4 ->5 -> 7
childHead
child
*/
class Solution {
public:
void connect(TreeLinkNode *parent) {
TreeLinkNode *child = nullptr;
TreeLinkNode *childHead = nullptr;
while (parent) {
while (parent) {
if (parent->left) {
if (childHead) {
child->next = parent->left;
} else {
childHead = parent->left;
}
child = parent->left;
}
if (parent->right) {
if (childHead) {
child->next = parent->right;
} else {
childHead = parent->right;
}
child = parent->right;
}
parent = parent->next;
}
parent = childHead;
child = nullptr;
childHead = nullptr;
}
}
};