描述

给定一个二叉树

struct Node { int val; Node left; Node right; Node *next; }

填充它的每个 next 指针,让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点,则将 next 指针设置为 NULL。

初始状态下,所有 next 指针都被设置为 NULL

示例 1:

输入:root = [1,2,3,4,5,null,7] 输出:[1,#,2,3,#,4,5,7,#] 解释:给定二叉树如图 A 所示,你的函数应该填充它的每个 next 指针,以指向其下一个右侧节点,如图 B 所示。序列化输出按层序遍历顺序(由 next 指针连接),’#’ 表示每层的末尾。


题解

这道题的具体解法,可参看 力扣官方题解方法一

  1. /**
  2. * // Definition for a Node.
  3. * function Node(val, left, right, next) {
  4. * this.val = val === undefined ? null : val;
  5. * this.left = left === undefined ? null : left;
  6. * this.right = right === undefined ? null : right;
  7. * this.next = next === undefined ? null : next;
  8. * };
  9. */
  10. /**
  11. * @param {Node} root
  12. * @return {Node}
  13. */
  14. var connect = function(root) {
  15. if (!root) return null
  16. const queue = [root]
  17. while(queue.length) {
  18. let node1 = null
  19. let n = queue.length
  20. for(let i = 0; i < n; i++) {
  21. let node2 = queue.shift()
  22. if(node2.left) queue.push(node2.left)
  23. if(node2.right) queue.push(node2.right)
  24. if(i > 0) node1.next = node2
  25. node1 = node2
  26. }
  27. }
  28. return root
  29. };