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

Posted PJCK

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(BFS 二叉树) leetcode 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较为简单。

C++代码:
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    vector<int> largestValues(TreeNode* root) {
        vector<int> vec;
        if(!root){
            return vec;
        }
        queue<TreeNode*> q;
        q.push(root);
        while(!q.empty()){
            int res = -2147483648;  //int类型的最小数。
            for(int i = q.size(); i > 0; i--){
                auto t = q.front();
                q.pop();
                if(t->val > res){
                    res = t->val;
                }
                if(t->left) q.push(t->left);
                if(t->right) q.push(t->right);
            }
            vec.push_back(res);
        }
        return vec;
    }
};

 

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

LeetCode 919 完全二叉树插入器[BFS 队列] HERODING的LeetCode之路

LeetCode 剑指Offer 37 序列化二叉树[BFS 二叉树] HERODING的LeetCode之路

515. Find Largest Value in Each Tree Row 二叉树每一层的最大值

LeetCode 297 二叉树的序列化与反序列化[BFS 二叉树] HERODING的LeetCode之路

[LeetCode]199. 二叉树的右视图(BFS)

[LeetCode]199. 二叉树的右视图(BFS)