-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPopulatingNextRightPointersInEachNode.h
81 lines (77 loc) · 1.66 KB
/
PopulatingNextRightPointersInEachNode.h
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
/**
* 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
*bfs+queue
*time:O(n) space:O(n)
*/
class Solution {
public:
void connect(TreeLinkNode *root) {
if(!root)return;
queue<TreeLinkNode*> q;
q.push(root);
q.push(NULL);
while(!q.empty())
{
TreeLinkNode *node=q.front();
q.pop();
if(!node)
{
if(q.empty()||!q.front())break;
q.push(NULL);
}
else
{
node->next=q.front();
if(node->left)q.push(node->left);
if(node->right)q.push(node->right);
}
}
return;
}
};
/**
*Solution 2
*dfs
*time:O(n) space:O(logn)
*/
class Solution {
public:
void connect(TreeLinkNode *root) {
connect(root,NULL);
return;
}
private:
void connect(TreeLinkNode *node,TreeLinkNode *sibling)
{
if(!node)return;
node->next=sibling;
connect(node->left,node->right);
if(sibling)connect(node->right,sibling->left);
else connect(node->right,NULL);
return;
}
};
/**
*Solution 3
*dfs
*time:O(n) space:O(logn)
*/
class Solution {
public:
void connect(TreeLinkNode *root) {
if(!root)return;
if(root->left)root->left->next=root->right;
if(root->right)root->right->next=root->next?root->next->left:NULL;
connect(root->left);
connect(root->right);
return;
}
};