-
Notifications
You must be signed in to change notification settings - Fork 0
/
p164.java
92 lines (78 loc) · 2.84 KB
/
p164.java
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
// https://practice.geeksforgeeks.org/problems/bottom-view-of-binary-tree/1
/*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.
Note: The Input/Output format and Example given are used for the system's internal purpose, and should be used by a user for Expected Output only. As it is a function problem, hence a user should not read any input from the stdin/console. The task is to complete the function specified, and not to write the full code.
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*logN).
Expected Auxiliary Space: O(N).
Constraints:
1 <= Number of nodes <= 105
1 <= Data of a node <= 105*/
class Solution{
static class Pair{
int hd;
Node node;
Pair(int h,Node n){
this.hd=h;
this.node=n;
}
}
public ArrayList <Integer> bottomView(Node root){
ArrayList<Integer> ls=new ArrayList<>();
Queue<Pair> q=new LinkedList<>();
Map<Integer,Integer> m=new TreeMap<>();
q.add(new Pair(0,root));
while(!q.isEmpty()){
Pair curr=q.remove();
m.put(curr.hd,curr.node.data);
if(curr.node.left!=null){
q.add(new Pair(curr.hd-1,curr.node.left));
}
if(curr.node.right!=null){
q.add(new Pair(curr.hd+1,curr.node.right));
}
}
for(Map.Entry<Integer,Integer> e:m.entrySet()){
ls.add(e.getValue());
}
return ls;
}
}