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

Leetcode | 103. Binary Tree Zigzag Level Order Traversal

时间:2018-09-18 17:12:38      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:init   二叉树   层次遍历   evel   col   def   tps   reverse   tree node   

题目:二叉树的锯齿形层次遍历

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution {
11 public:
12     vector<vector<int>> zigzagLevelOrder(TreeNode* root) 
13     {
14         if(!root)
15             return vector<vector<int>>{};
16         vector<vector<int>> vec;    
17         queue<TreeNode*> qu;
18         qu.push(root);
19         int flag = 0;
20         while(!qu.empty())
21         {
22             flag++;
23              vector<int> temp;
24             int n = qu.size();
25             while(n--)
26             {
27                 TreeNode *p = qu.front();
28                 qu.pop();
29                 temp.push_back(p->val);
30                 if(p->left)
31                     qu.push(p->left);
32                 if(p->right)
33                     qu.push(p->right);      
34             }
35             if(flag % 2 == 0)
36                 reverse(temp.begin(), temp.end());
37             vec.push_back(temp);    
38         }
39         return vec;       
40     }
41 };

Leetcode | 103. Binary Tree Zigzag Level Order Traversal

标签:init   二叉树   层次遍历   evel   col   def   tps   reverse   tree node   

原文地址:https://www.cnblogs.com/sunbines/p/9669703.html

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