515. Find Largest Value in Each Tree Row

Posted apanda009

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了515. Find Largest Value in Each Tree Row相关的知识,希望对你有一定的参考价值。

You need to find the largest value in each row of a binary tree.

Example:
Input: 

          1
         /         3   2
       / \   \  
      5   3   9 

Output: [1, 3, 9]

经典bfs, 不多说

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public List<Integer> largestValues(TreeNode root) {
        
        List<Integer> ans = new ArrayList<>();
        if (root == null) return ans;
        Queue<TreeNode> q = new LinkedList<>();
        
        q.offer(root);
        while (!q.isEmpty()) {
            int size = q.size();
            int max = Integer.MIN_VALUE;
            while (size > 0) {
                 TreeNode cur = q.poll();
                 size--;
                 max = Math.max(cur.val, max);
                 if (cur.left != null) {
                    q.offer(cur.left);
                }
                if (cur.right != null) {
                    q.offer(cur.right);
                }
            }
            ans.add(max);
        }
        return ans;
    }
}

  

以上是关于515. Find Largest Value in Each Tree Row的主要内容,如果未能解决你的问题,请参考以下文章

515. Find Largest Value in Each Tree Row

515. Find Largest Value in Each Tree Row

leetcode--515. Find Largest Value in Each Tree Row

[LeetCode]515 Find Largest Value in Each Tree Row(dfs)

[leetcode-515-Find Largest Value in Each Tree Row]

(BFS 二叉树) leetcode 515. Find Largest Value in Each Tree Row