-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBottom_View_of_Binary_Tree.cpp
102 lines (81 loc) · 2.44 KB
/
Bottom_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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
Problem Statement:
------------------
Given a binary tree, print the bottom view from left to right.
A node is included in bottom view if it can be seen when we look at the tree from bottom.
20
/ \
8 22
/ \ \
5 3 25
/ \
10 14
For the above tree, the bottom view is 5 10 3 14 25.
If there are multiple bottom-most nodes for a horizontal distance from root, then print the later one in level traversal.
For example, in the below diagram, 3 and 4 are both the bottommost nodes at horizontal distance 0, we need to print 4.
20
/ \
8 22
/ \ / \
5 3 4 25
/ \
10 14
For the above tree the output should be 5 10 4 14 25.
Example 1:
---------
Input:
1
/ \
3 2
Output: 3 1 2
Explanation: First case represents a tree with 3 nodes and 2 edges where root is 1, left child of 1 is 3 and right child of 1 is 2.
Thus nodes of the binary tree will be printed as such 3 1 2.
Example 2:
---------
Input:
10
/ \
20 30
/ \
40 60
Output: 40 20 60 30
Your Task: This is a functional problem, you don't need to care about input, just complete the function bottomView() which takes
the root node of the tree as input and returns an array containing the bottom view of the given tree.
Expected Time Complexity: O(N).
Expected Auxiliary Space: O(N).
*/
// Link --> https://practice.geeksforgeeks.org/problems/bottom-view-of-binary-tree/1#
// Code:
vector <int> bottomView(Node *root)
{
vector <int> res;
if(root == NULL)
return res;
int hd = 0;
map <int, int> m;
map <Node* , int> mh;
map<int, int>::iterator i;
queue<Node *> q;
mh[root] = hd;
q.push(root);
while (!q.empty())
{
Node *temp = q.front();
q.pop();
hd = mh[temp];
m[hd] = temp->data;
if (temp->left != NULL)
{
mh[temp->left] = hd-1;
q.push(temp->left);
}
if (temp->right != NULL)
{
mh[temp->right] = hd+1;
q.push(temp->right);
}
}
for(i = m.begin() ; i != m.end() ; i++)
res.push_back (i->second);
return res;
}