题目链接 https://leetcode-cn.com/problems/find-largest-value-in-each-tree-row/description/ 题目描述 您需要在二叉树的每一行中找到最大的值. 示例: 输入: 1 / \ 3 2 / \ \ 5 3 9 输出: [1, 3, 9] 题解 按层次遍历二叉树,计算每层的最大值即可. 代码 /** * Definition for a binary tree node. * public class TreeNode {…