描述
给定一个 完美二叉树 ,其所有叶子节点都在同一层,每个父节点都有两个子节点。二叉树定义如下:
struct Node {
int val;
Node left;
Node right;
Node *next;
}
填充它的每个 next 指针,让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点,则将 next 指针设置为 NULL
。
初始状态下,所有 next 指针都被设置为 NULL
。
示例 1:
输入:root = [1,2,3,4,5,6,7] 输出:[1,#,2,3,#,4,5,6,7,#] 解释:给定二叉树如图 A 所示,你的函数应该填充它的每个 next 指针,以指向其下一个右侧节点,如图 B 所示。序列化的输出按层序遍历排列,同一层节点由 next 指针连接,’#’ 标志着每一层的结束。
题解
这道题的具体解法,可参看 这篇文章,非常巧妙!
/**
* // Definition for a Node.
* function Node(val, left, right, next) {
* this.val = val === undefined ? null : val;
* this.left = left === undefined ? null : left;
* this.right = right === undefined ? null : right;
* this.next = next === undefined ? null : next;
* };
*/
/**
* @param {Node} root
* @return {Node}
*/
var connect = function(root) {
if (!root) return null
connectAdjacentNode(root.left, root.right)
return root
};
var connectAdjacentNode = function(node1, node2) {
if (!node1 || !node2) return null
// 将传入的两个节点连接
node1.next = node2
// 连接相同父节点的两个子节点
connectAdjacentNode(node1.left, node1.right)
connectAdjacentNode(node2.left, node2.right)
// 连接跨越父节点的两个子节点
connectAdjacentNode(node1.right, node2.left)
}