forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
populatingNextRightPointersInEachNode.II.cpp
237 lines (197 loc) · 5.35 KB
/
populatingNextRightPointersInEachNode.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// Source : https://oj.leetcode.com/problems/populating-next-right-pointers-in-each-node-ii/
// Author : Hao Chen
// Date : 2014-06-19
/**********************************************************************************
*
* Follow up for problem "Populating Next Right Pointers in Each Node".
* What if the given tree could be any binary tree? Would your previous solution still work?
*
* Note:
* You may only use constant extra space.
*
* For example,
* Given the following binary tree,
*
* 1
* / \
* 2 3
* / \ \
* 4 5 7
*
* After calling your function, the tree should look like:
*
* 1 -> NULL
* / \
* 2 -> 3 -> NULL
* / \ \
* 4-> 5 -> 7 -> NULL
*
*
**********************************************************************************/
#include <stdio.h>
#include <vector>
#include <queue>
using namespace std;
/**
* 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) {}
TreeLinkNode() : val(0), left(NULL), right(NULL), next(NULL) {}
};
void connect(TreeLinkNode *root) {
if (root==NULL) return;
if (root->left && root->right){
root->left->next = root->right;
}
if (root->next) {
TreeLinkNode *left=NULL, *right=NULL;
left = root->right ? root->right: root->left;
for (TreeLinkNode *p = root->next; p!=NULL; p=p->next) {
if (p->left){
right = p->left;
break;
}
if (p->right){
right = p->right;
break;
}
}
if (left){
left->next = right;
}
}
connect(root->right);
connect(root->left);
}
void connect1(TreeLinkNode *root) {
if (root==NULL){
return;
}
vector<TreeLinkNode*> v;
v.push_back(root);
while(v.size()>0){
if ( (root->left && root->left->next==NULL) || (root->right && root->right->next==NULL) ) {
if (root->left && root->right){
root->left->next = root->right;
}
if (root->next){
TreeLinkNode *left=NULL, *right=NULL;
left = root->right ? root->right: root->left;
for (TreeLinkNode *p = root->next; p!=NULL; p=p->next) {
if (p->left){
right = p->left;
break;
}
if (p->right){
right = p->right;
break;
}
}
if (left){
left->next = right;
}
}
if (root->left) {
v.push_back(root->left);
}
if (root->right) {
v.push_back(root->right);
}
}
root = v.back();
v.pop_back();
}
}
void connect3(TreeLinkNode *root) {
if(root == NULL) return;
queue<TreeLinkNode*> q;
TreeLinkNode *prev, *last;
prev = last = root;
q.push(root);
while(!q.empty()) {
TreeLinkNode* p = q.front();
q.pop();
prev->next = p;
if(p->left ) q.push(p->left);
if(p->right) q.push(p->right);
if(p == last) { // meets last of current level
// now, q contains all nodes of next level
last = q.back();
p->next = NULL; // cut down.
prev = q.front();
}
else {
prev = p;
}
}
}
// constant space
// key point: we can use `next` pointer to represent
// the buffering queue of level order traversal.
void connect4(TreeLinkNode *root) {
if(root == NULL) return;
TreeLinkNode *head, *tail;
TreeLinkNode *prev, *last;
head = tail = NULL;
prev = last = root;
#define push(p) \
if(head == NULL) { head = tail = p; } \
else { tail->next = p; tail = p; }
push(root);
while(head != NULL) {
TreeLinkNode* p = head;
head = head->next; // pop
prev->next = p;
if(p->left ) push(p->left);
if(p->right) push(p->right);
if(p == last) {
last = tail;
p->next = NULL; // cut down.
prev = head;
}
else {
prev = p;
}
}
#undef push
}
void printTree(TreeLinkNode *root){
if (root == NULL){
return;
}
printf("[%2d] : left[%d], right[%d], next[%d]\n",
root->val,
root->left ? root->left->val : -1,
root->right ? root->right->val : -1,
root->next?root->next->val : -1 );
printTree(root->left);
printTree(root->right);
}
int main()
{
const int cnt = 15;
TreeLinkNode a[cnt];
for(int i=0; i<cnt; i++){
a[i].val = i+1;
}
for(int i=0, pos=0; pos<cnt-1; i++ ){
a[i].left = &a[++pos];
a[i].right = &a[++pos];
}
a[5].left = a[5].right = NULL;
a[3].right = NULL;
//a[1].right = NULL;
//a[2].left = NULL;
//a[3].left = &a[4];
//a[6].right= &a[5];
TreeLinkNode b(100), c(200);
//a[3].left = &b;
//a[6].right = &c;
a[9].left = &b;
connect(&a[0]);
printTree(&a[0]);
return 0;
}