您的位置:首页 > 其它

LeetCode--Binary Tree Zigzag Level Order Traversal

2015-01-14 11:10 381 查看
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,#,#,15,7}
,

3
   / \
  9  20
    /  \
   15   7


return its zigzag level order traversal as:

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


confused what
"{1,#,2,3}"
means? >
read more on how binary tree is serialized on OJ.
/**
 * Definition for binary tree
 * 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>> res;
        if(root == NULL)
            return res;
        stack<TreeNode*> use;
        queue<TreeNode*> save;
        save.push(root);
        bool flag = false;
        while(!save.empty())
        {
            vector<int> t;
            while(!save.empty())
            {
                use.push(save.front());
                save.pop();
            }
            while(!use.empty())
            {
                TreeNode* temp = use.top();
                use.pop();
                t.push_back(temp->val);
                if(flag == true)
                {
                    if(temp->right != NULL)
                        save.push(temp->right);
                    if(temp->left != NULL)
                        save.push(temp->left);
                }
                else
                {
                    if(temp->left != NULL)
                        save.push(temp->left);
                    if(temp->right != NULL)
                        save.push(temp->right);
                }
            }
            flag = (!flag);
            res.push_back(t);
        }
        return res;
    }
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: