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

LeetCode 102. Binary Tree Level Order Traversal

时间:2018-06-20 23:59:10      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:跳过   col   插入   IV   amp   队列   binary   order   push   

Given a binary tree, return the level order traversal of its nodes‘ values. (ie, from left to right, level by level).

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

    3
   /   9  20
    /     15   7

 

return its level order traversal as:

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


我使用的是广搜,要用到队列。但由于是二叉树,可以时间效率更高的方法,dfs遍历,标记每个节点的顺序,1,2,3,4 空节点就跳过。在相应顺序为下标中的数组中插入相应的值。
然后1 , 2 3 ,4 5 6 7 8 ,...按照这个规律插到二维数组中。


c++ 广搜
lass Solution {
public:
    vector<vector<int>> levelOrder(TreeNode* root) {
        
       queue<TreeNode*> q;
       queue<int> q2;
       vector<vector<int> > ans;
       if(root==NULL)
           return ans;
       q.push(root);q2.push(0);
       vector<int> res;
       int j=-1;
       while(!q.empty())
       {
           TreeNode* term = q.front();
           int i = q2.front();
           if(i==j+2)
           {
               ans.push_back(res);
               res.clear();
               j++;
           }
           res.push_back(term->val);     
           q.pop();q2.pop();
           if(term->left!=NULL)
           { q.push(term->left);q2.push(i+1);}
           if(term->right!=NULL)
           { q.push(term->right);q2.push(i+1);}
       }
       if(!res.empty())
           ans.push_back(res);
        
       return ans;      
    }
};

 





LeetCode 102. Binary Tree Level Order Traversal

标签:跳过   col   插入   IV   amp   队列   binary   order   push   

原文地址:https://www.cnblogs.com/dacc123/p/9206376.html

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