Skip to main content

在每个树行中找最大值

题目

给定一棵二叉树的根节点 root, 请找出该二叉树中每一层的最大值.

  • 二叉树的节点个数的范围是 [0, 10⁴]
  • -2³¹ <= Node.val <= 2³¹ - 1
示例

输入:

    1
/ \
3 2
/ \ \
5 3 9

输出: res = [1, 3, 9]

题解

没什么难的, 就是层序遍历, 拿到每层最大的值. 注意由于 node.val 的范围是 -2³¹ <= Node.val <= 2³¹ - 1, 所以要把 max 的初始值设为 Number.MIN_SAFE_INTEGER.

/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {number[]}
*/
var largestValues = function (root) {
const res = []
if (!root) return res

const queue = [root]
while (queue.length !== 0) {
const n = queue.length
let max = Number.MIN_SAFE_INTEGER

for (let i = 0; i < n; i++) {
const node = queue.shift()
max = Math.max(max, node.val)

if (node.left) queue.push(node.left)
if (node.right) queue.push(node.right)
}

res.push(max)
}

return res
}