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

103. Binary Tree Zigzag Level Order Traversal

时间:2017-07-31 15:47:27      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:begin   style   nbsp   its   queue   ext   class   lte   back   

Given a binary tree, return the zigzag level order traversal of its nodes‘ values. (ie, from left to right, then right to left for the next level and alternate between).

For example:
Given binary tree [3,9,20,null,null,15,7],

    3
   /   9  20
    /     15   7

 

return its zigzag level order traversal as:

[
  [3],
  [20,9],
  [15,7]
]

.

/**
 * 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>> zigzagLevelOrder(TreeNode* root) {
        vector<vector<int> >w;
        if (root == nullptr) return w;
        queue<TreeNode *> q;
        q.push(root);
        while (!q.empty()) {
            int n = q.size();
            vector<int> v;
            for (int i = 0; i < n; ++i) {
                TreeNode *u = q.front();q.pop();
                if (u == nullptr) continue;
                q.push(u->left);
                q.push(u->right);
                v.push_back(u->val);
            }
            if (w.size()%2 == 1){
                reverse(v.begin(), v.end());
            }
            if (v.size())w.push_back(v);
        }
        return w;
    }
};

 

103. Binary Tree Zigzag Level Order Traversal

标签:begin   style   nbsp   its   queue   ext   class   lte   back   

原文地址:http://www.cnblogs.com/pk28/p/7263154.html

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