forked from liuyubobobo/Play-Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main2.cpp
49 lines (35 loc) · 892 Bytes
/
main2.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
/// Source : https://leetcode.com/problems/populating-next-right-pointers-in-each-node/description/
/// Author : liuyubobobo
/// Time : 2018-10-08
#include <iostream>
#include <queue>
#include <cassert>
using namespace std;
/// DFS
/// Time Complexity: O(n)
/// Space Compelxity: O(logn)
/// 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 || !root->left) return;
dfs(root->left, root->right);
connect(root->left);
connect(root->right);
}
private:
void dfs(TreeLinkNode* l, TreeLinkNode* r){
if(l){
l->next = r;
dfs(l->right, r->left);
}
}
};
int main() {
return 0;
}