• leetCode(21):Binary Tree Right Side View 分类: leetCode 2015-06-22 09:00 140人阅读 评论(0) 收藏


    Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.

    For example:
    Given the following binary tree,

       1            <---
     /   
    2     3         <---
          
      5     4       <---
    

    You should return [1, 3, 4].

    采用层序遍历的方式,每一层的最后一个结点即为在右侧可以看到的结点;

    /**
     * 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<int> rightSideView(TreeNode* root) {
            queue<TreeNode*> nodes;
        	vector<int> vec;
        	vector< vector<int> > result;
        	vector<int> tmp;
        	if(NULL==root)
        		return vec;
        	nodes.push(root);
        	while(!nodes.empty())
        	{
        		int length=nodes.size();
        		int i=0;
        		while(i<length)
        		{
        			TreeNode* tmpNode=nodes.front();
        			tmp.push_back(tmpNode->val);
        			if(tmpNode->left)
        				nodes.push(tmpNode->left);
        			if(tmpNode->right)
        				nodes.push(tmpNode->right);
        			nodes.pop();
        			i++;
        		}
        		result.push_back(tmp);
        		tmp.clear();
        	}
        	
        	for(size_t i=0;i<result.size();++i)
        	{
        		vec.push_back(result[i][result[i].size()-1]);
        	}
        	return vec;
        }
    };


  • 相关阅读:
    C# post请求 HttpWebRequest
    C# 获取当前路径
    计算n的阶乘
    查找2-n之间素数的个数
    循环嵌套-打印不定长特殊*号图形
    流程控制-物流费用计算(嵌套if)
    基于Arduino的按键控制LED实验
    基于Arduino的红外遥控
    PS/2的相关知识
    Arduino_URO端口与AtMega328p引脚对应图
  • 原文地址:https://www.cnblogs.com/zclzqbx/p/4687094.html
Copyright © 2020-2023  润新知