forked from sachuverma/DataStructures-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Right View of Binary Tree.cpp
69 lines (58 loc) · 1.16 KB
/
Right View of Binary Tree.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
/*
Right View of Binary Tree
=========================
Given a Binary Tree, find Right view of it. Right view of a Binary Tree is set of nodes visible when tree is viewed from right side.
Right view of following tree is 1 3 7 8.
1
/ \
2 3
/ \ / \
4 5 6 7
\
8
Example 1:
Input:
1
/ \
3 2
Output: 1 2
Example 2:
Input:
10
/ \
20 30
/ \
40 60
Output: 10 30 60
Your Task:
Just complete the function rightView() that takes node as parameter and returns the right view as a list.
Expected Time Complexity: O(N).
Expected Auxiliary Space: O(Height of the Tree).
Constraints:
0 ≤ Number of nodes ≤ 105
1 ≤ Data of a node ≤ 105
*/
vector<int> rightView(Node *root)
{
if (!root)
return {};
vector<int> ans;
queue<Node *> q;
q.push(root);
while (q.size())
{
int size = q.size();
for (int i = size; i > 0; --i)
{
auto curr = q.front();
q.pop();
if (i == 1)
ans.push_back(curr->data);
if (curr->left)
q.push(curr->left);
if (curr->right)
q.push(curr->right);
}
}
return ans;
}