Problem description:

Given a binary tree

1
2
3
4
5
6
struct Node {
int val;
Node *left;
Node *right;
Node *next;
}

Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be set to NULL.

Initially, all next pointers are set to NULL.

Follow up:

  • You may only use constant extra space.
  • Recursive approach is fine, you may assume implicit stack space does not count as extra space for this problem.

Example 1:

https://assets.leetcode.com/uploads/2019/02/15/117_sample.png

1
2
3
Input: root = [1,2,3,4,5,null,7]
Output: [1,#,2,3,#,4,5,7,#]
Explanation:Given the above binary tree (Figure A), your function should populate each next pointer to point to its next right node, just like in Figure B. The serialized output is in level order as connected by the next pointers, with '#' signifying the end of each level.

Solution BFS:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Solution:
def connect(self, root: 'Node') -> 'Node':
if not root:
return root
queue = deque([root])
while queue:
next_level = deque([])
for _ in range(len(queue)):
node = queue.popleft()
if queue:
node.next = queue[0]
if node.left: next_level.append(node.left)
if node.right: next_level.append(node.right)
queue = next_level
return root

time complexity: $O(n)$
space complexity: $O(n)$
reference:
related problem: