forked from fengvyi/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
117. Populating Next Right Pointers in Each Node II.cpp
53 lines (51 loc) · 1.41 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
/**
* 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) {}
* };
*/
// Solution 1. Works for any kind of tree, O(n) space.
class Solution {
public:
void connect(TreeLinkNode *root) {
if(!root) return;
deque<TreeLinkNode*>cur;
deque<TreeLinkNode*>next;
cur.push_back(root);
while(!cur.empty()){
TreeLinkNode* node = cur.front();
cur.pop_front();
node->next = cur.empty() ? NULL : cur.front();
if(node->left) next.push_back(node->left);
if(node->right) next.push_back(node->right);
if(cur.empty()) swap(cur, next);
}
}
};
// Solution 2. O(1) space.
class Solution {
public:
void connect(TreeLinkNode *root) {
TreeLinkNode head(0);
TreeLinkNode* pre = &head, *cur;
pre->next = root;
while(pre->next){
cur = pre->next;
while(cur){
if(cur->left){
pre->next = cur->left;
pre = pre->next;
}
if(cur->right){
pre->next = cur->right;
pre = pre->next;
}
cur = cur->next;
}
pre->next = NULL;
pre = &head;
}
}
};