leetcode [117] 填充每个节点的下一个右侧节点指针 II
Contact me:
Blog -> https://cugtyt.github.io/blog/index
Email -> cugtyt@qq.com
GitHub -> Cugtyt@GitHub
给定一个二叉树
struct Node {
int val;
Node *left;
Node *right;
Node *next;
}
填充它的每个 next 指针,让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点,则将 next 指针设置为 NULL。
初始状态下,所有 next 指针都被设置为 NULL。
进阶:
你只能使用常量级额外空间。 使用递归解题也符合要求,本题中递归程序占用的栈空间不算做额外的空间复杂度。
示例:
输入:root = [1,2,3,4,5,null,7]
输出:[1,#,2,3,#,4,5,7,#]
解释:给定二叉树如图 A 所示,你的函数应该填充它的每个 next 指针,以指向其下一个右侧节点,如图 B 所示。
提示:
树中的节点数小于 6000 -100 <= node.val <= 100
来自题解:
维护两个指针,一个指向一层节点,另一个指向下一层,不断遍历连接,注意,维护一个头节点便于统一处理。
class Solution:
def connect(self, root: 'Node') -> 'Node':
cur = root
while cur:
dummy = Node()
tail = dummy
#遍历 cur 的当前层
while cur:
if cur.left:
tail.next = cur.left
tail = tail.next
if cur.right:
tail.next = cur.right
tail = tail.next
cur = cur.next
#更新 cur 到下一层
cur = dummy.next
return root