107. Binary Tree Level Order Tra

2018-08-14  本文已影响0人  刘小小gogo
image.png

insert.(result.begin(), cur)!!!!注意,每次插入到开始位置

/**
 * 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<vector<int>> levelOrderBottom(TreeNode* root) {
        vector<vector<int>> result;
        if(root == NULL) return result;
        queue<TreeNode *> q;
        q.push(root);
        while(!q.empty()){
            int size = q.size();
            vector<int> cur;
            for(int i = 0; i < size; i++){
                TreeNode * t = q.front();
                q.pop();
                cur.push_back(t->val);
                if(t->left){
                    q.push(t->left);
                }
                if(t->right){
                    q.push(t->right);
                }
            }
            result.insert(result.begin(), cur);
        }
        return result;
    }
};
上一篇 下一篇

猜你喜欢

热点阅读