您的位置:首页 > 其它

leetcode-Binary Tree Right Side View

2015-11-05 00:03 267 查看
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) {
if(!root)
return vector<int>();
deque<TreeNode*>  que;
vector<int> res;
que.push_back(root);

while(!que.empty()){
res.push_back(que.back()->val);
int size=que.size();
while(size--){
TreeNode *temp=que.front();
que.pop_front();
if(temp->left)
que.push_back(temp->left);
if(temp->right)
que.push_back(temp->right);
}

}
return res;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: