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

leetcode:Binary Tree Right Side View

时间:2015-04-21 00:27:25      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:leetcode   遍历   bfs   前序遍历   

一、 题目

  给你一个二叉树,假设几就站在树的后边,那么此时你就只能看到最右边的节点了。

例如:

    1            <---

  /   \

 2      3         <---

 \     \

  5     4          <---

返回值就是[1,3,4]

二、 分析

  对于树的遍历,我们通常会使用DFS或BFS,这个题目其实同样是遍历,不过呢,我们只记录下来每一行最右边的节点即可。我第一个思路是每次只访问右节点,但仔细一想,并不一定所有的都是这种情况的,例如或许最右边的节点在左半部分的。马上否定了这个思路,想想不管怎样都得是要遍历所有节点的,不过我们是按照变相的前序遍历,即当前节点-右节点-左节点的顺序,每次都将他们放进队列,但是取的时候我们只记录下第一个节点即可,其他的都释放掉。


/**
 * 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<int> rightSideView(TreeNode *root) {
        vector<int> res;
        if(root == NULL)
            return res;
        queue<TreeNode*> nQueue;
        TreeNode *node = root;
        nQueue.push(node);
        while(!nQueue.empty()){
            int size = nQueue.size();
            for(int i = 0; i < size; i++){
                node = nQueue.front();
                nQueue.pop();
                if(i == 0)
                    res.push_back(node->val);
                if(node->right)
                    nQueue.push(node->right);
                if(node->left)
                    nQueue.push(node->left);
            }
        }
        return res;
    }
};


 

leetcode:Binary Tree Right Side View

标签:leetcode   遍历   bfs   前序遍历   

原文地址:http://blog.csdn.net/zzucsliang/article/details/45157625

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