-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbottomview.java
155 lines (122 loc) · 3.11 KB
/
bottomview.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package binnarytree;
import java.util.Map;
import java.util.Scanner;
import java.util.TreeMap;
public class bottomview {
public class BinaryTree {
private class Node {
int data;
Node left;
Node right;
Node(int data, Node left, Node right) {
this.data = data;
this.left = left;
this.right = right;
}
}
private Node root = null;
private int size = 0;
BinaryTree() {
Scanner scn = new Scanner(System.in);
this.root = input(scn, null, false);
}
private Node input(Scanner scn, Node parent, Boolean isleftorright) {
if (parent == null) {
System.out.println("Enter data for the parent node");
} else {
if (isleftorright) {
System.out.println("Enter data for the left child of " + parent.data);
} else {
System.out.println("Enter data for the right child of " + parent.data);
}
}
int data = scn.nextInt();
Node node = new Node(data, null, null);
this.size++;
System.out.println("does " + node.data + " has left child");
Boolean choice = false;
choice = scn.nextBoolean();
if (choice) {
node.left = input(scn, node, true);
}
choice = false;
System.out.println("does " + node.data + " has right child");
choice = scn.nextBoolean();
if (choice) {
node.right = input(scn, node, false);
}
return node;
}
public void display() {
display(this.root);
}
private void display(Node parent) {
String str = "";
if (parent.left != null) {
str += parent.left.data + " => ";
} else {
str += "End => ";
}
str += parent.data;
if (parent.right != null) {
str += " <= " + parent.right.data;
} else {
str += " <= End";
}
System.out.println(str);
if (parent.left != null) {
display(parent.left);
}
if (parent.right != null) {
display(parent.right);
}
}
public void verticallevelorder() {
verticallevelorder(this.root, 0, 0);
}
public class pair {
int depth;
int data;
pair(int depth, int data) {
this.depth = depth;
this.data = data;
}
}
Map<Integer, pair> map = new TreeMap<>();
// for bottom view
private void verticallevelorder(Node parent, int ht, int depth) {
if (parent == null) {
return;
}
if (map.containsKey(ht)) {
pair mp = map.get(ht);
if (mp.depth < depth) {
map.replace(ht, new pair(depth, parent.data));
}
} else {
map.put(ht, new pair(depth, parent.data));
}
verticallevelorder(parent.left, ht - 1, depth + 1);
verticallevelorder(parent.right, ht + 1, depth + 1);
}
public void bottomview() {
bottomview(this.root);
}
private void bottomview(Node parent) {
this.verticallevelorder();
for (Map.Entry<Integer, pair> mp : map.entrySet()) {
System.out.println(mp.getValue().data);
}
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
// 10 true 20 true 40 false false true 50 false false true 30 true 60 false
// true 74 false true 75 false false true 73 false false
bottomview m = new bottomview();
BinaryTree tree = m.new BinaryTree();
tree.display();
System.out.println();
tree.bottomview();
}
}