forked from neetcode-gh/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0199-binary-tree-right-side-view.cpp
55 lines (45 loc) · 1.36 KB
/
0199-binary-tree-right-side-view.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
Given root of binary tree, return values that can only be seen from the right side
BFS traversal, push right first before left, store only first value
Time: O(n)
Space: O(n)
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
vector<int> rightSideView(TreeNode* root) {
if (root == NULL) {
return {};
}
queue<TreeNode*> q;
q.push(root);
vector<int> result;
while (!q.empty()) {
int count = q.size();
for (int i = count; i > 0; i--) {
TreeNode* node = q.front();
q.pop();
if (i == count) {
result.push_back(node->val);
}
if (node->right != NULL) {
q.push(node->right);
}
if (node->left != NULL) {
q.push(node->left);
}
}
}
return result;
}
};