-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path116.cpp
30 lines (30 loc) · 805 Bytes
/
116.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
/**
* 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 {
public:
void connect(TreeLinkNode *root) {
if(root == NULL)
return ;
TreeLinkNode *curnode = root;
TreeLinkNode *crossnode = NULL;
while(curnode->left)
{
crossnode = curnode;
while(crossnode)
{
crossnode->left->next = crossnode->right;
if(crossnode->next)
crossnode->right->next = crossnode->next->left;
crossnode = crossnode->next;
}
curnode = curnode->left;
}
return;
}
};