题解 | #按之字形顺序打印二叉树#

按之字形顺序打印二叉树

http://www.nowcoder.com/practice/91b69814117f4e8097390d107d2efbe0

/*
struct TreeNode {
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
    TreeNode(int x) :
            val(x), left(NULL), right(NULL) {
    }
};
*/
class Solution {
public:
    vector<vector<int> > Print(TreeNode* head) {
        if(head==nullptr) return {};
        queue<TreeNode *> q;

        vector<vector<int>> res;
        vector<int> temp;
        q.push(head);
        int high=1;

        while(!q.empty()){
            int sz=q.size();
            for(int i=0;i<sz;i++){
                TreeNode* p=q.front();
                q.pop();
                temp.push_back(p->val);
                if(p->left)  q.push(p->left);
                if(p->right) q.push(p->right);
            }
            if(high%2==0) reverse(temp.begin(),temp.end());
            high++;
            res.push_back(temp);
            temp.clear();
        }

        return res;
    }

};
全部评论

相关推荐

Hello_WordN:咱就是说,除了生命其他都是小事,希望面试官平安,希望各位平时也多注意安全
点赞 评论 收藏
分享
11-27 12:43
已编辑
门头沟学院 C++
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务