码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer | 按之字形顺序打印二叉树 | 36

时间:2021-02-19 13:33:14      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:struct   queue   solution   奇数   bin   turn   null   int   front   


技术图片

思路分析

分行从上到下打印二叉树本质上是一样的,只不过奇数行是从左到右打印,偶数行是从右到左打印.

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<vector<int>> levelOrder(TreeNode* root) {
        vector<vector<int>> res;
        if(!root)return res;
        queue<TreeNode*> q;
        q.push(root);
        bool zigzag = true;
        while(!q.empty()){
            vector<int> tmp;
            for(int i=q.size();i>0;i--){
                auto t = q.front();
                q.pop();
                tmp.push_back(t->val);
                if(t->left)q.push(t->left);
                if(t->right)q.push(t->right);
            }
            zigzag = !zigzag;
            if(zigzag)reverse(tmp.begin(),tmp.end());
            res.push_back(tmp);
        }
        return res;
    }
};

剑指offer | 按之字形顺序打印二叉树 | 36

标签:struct   queue   solution   奇数   bin   turn   null   int   front   

原文地址:https://www.cnblogs.com/Rowry/p/14410779.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!