Problem:
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following definition:
1 | struct Node { |
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:

1 | Input: root = [1,2,3,4,5,6,7] |
Methods:
first method
使用递归, 前序遍历。
先将同一个节点下的左子节点
next指向右子节点:root.left.next = root.right再类似于链表操作,因为
node.next初始全为NULL, 而且在前一次的递归中node.next已经被赋值,如果node.next仍然为空,代表是这一层的最末尾节点,不需要进行操作。 否则对节点的右子节点赋值:root.right.next = root.next.left。之所以使用前序遍历,是因为要先对
root.next赋值,之后才能对root.left.next和root.right.next赋值,root.right.next的赋值依赖于root.next。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20"""
# Definition for a Node.
class Node:
def __init__(self, val: int = 0, left: 'Node' = None, right: 'Node' = None, next: 'Node' = None):
self.val = val
self.left = left
self.right = right
self.next = next
"""
class Solution:
def connect(self, root: 'Node') -> 'Node':
if not root or not root.left: return root
root.left.next = root.right
if root.next:
root.right.next = root.next.left
self.connect(root.left)
self.connect(root.right)
return root
second method
迭代法,链表操作,每次从每层最左边的节点开始遍历。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22"""
# Definition for a Node.
class Node:
def __init__(self, val: int = 0, left: 'Node' = None, right: 'Node' = None, next: 'Node' = None):
self.val = val
self.left = left
self.right = right
self.next = next
"""
class Solution:
def connect(self, root: 'Node') -> 'Node':
if not root: return
leftmost = root #最左边的node
while leftmost.left:
curr = leftmost #当前node
while curr:
curr.left.next = curr.right
if curr.next: curr.right.next = curr.next.left
curr = curr.next
leftmost = leftmost.left
return root