-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrightView199.cpp
75 lines (65 loc) · 1.42 KB
/
rightView199.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <bits/stdc++.h>
using namespace std;
template <typename... T>
void pln(T... args)
{
(cout << ... << args) << "\n";
}
void test(bool cond)
{
if (cond) pln("Passed!!");
else pln("Failed!!");
}
//----------------------------------------------------------------------------------
// #pragma GCC optimize("O3")
namespace {
static const bool __booster = [] {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
return true;
}();
} // namespace
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)
{
vector<int> res;
if (!root) return res;
deque<TreeNode *> q = {root};
while (!q.empty()) {
size_t s = q.size();
int val;
for (; s > 0; s--) {
TreeNode *n = q.front();
val = n->val;
q.pop_front();
if (n->left) q.push_back(n->left);
if (n->right) q.push_back(n->right);
}
res.push_back(val);
}
return res;
}
};
//----------------------------------------------------------------------------------
int main([[maybe_unused]] int argc, [[maybe_unused]] char **argv)
{
// Solution s;
pln("NO TESTS!");
return 0;
}