c_cpp 199-2.cpp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 199-2.cpp相关的知识,希望对你有一定的参考价值。

/**
 * 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> rightSideView(TreeNode* root) {
        vector<int> result;
        if (root == NULL) return result;
        queue<TreeNode*> curr;
        curr.push(root);
        while(!curr.empty()) {
            int size = curr.size();
            int target = size - 1;
            int i = 0;
            for(;size > 0;  size--){
                TreeNode* c = curr.front();
                curr.pop();
                if (i == target) {
                    result.push_back(c->val);
                }
                if (c->left != NULL) {
                    curr.push(c->left);
                }
                if (c->right != NULL) {
                    curr.push(c->right);
                }
                i++;
            }
        }
        return result;
    }
};

以上是关于c_cpp 199-2.cpp的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 200.岛屿数量

c_cpp 127.单词阶梯

c_cpp MOFSET

c_cpp MOFSET

c_cpp 31.下一个排列

c_cpp string→char *