-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbj_5639.java
More file actions
72 lines (58 loc) · 1.64 KB
/
bj_5639.java
File metadata and controls
72 lines (58 loc) · 1.64 KB
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
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
BST bst = new BST(Integer.parseInt(scan.nextLine()));
while(scan.hasNext()) {
bst.add(bst.root, Integer.parseInt(scan.nextLine()));
}
System.out.println(bst.postorder());
}
public static class BST {
Node root;
public BST(int root) {
this.root = new Node(root);
}
public static void add(Node root, int input) {
if(input < root.data)
{
if(root.left == null)
root.left = new Node(input);
else
add(root.left, input);
else if(input > root.data)
{
if(root.right == null)
root.right = new Node(input);
else
add(root.right, input);
}
}
public String postorder() {
return postorder(root);
}
public String postorder(Node root)
{
String line = "";
if(root.left != null)
postorder(root.left);
if(root.right != null)
postorder(root.right);
System.out.println(root.data);
return line;
}
}
public static class Node {
Node right;
Node left;
int data;
public Node() {
this.right = null;
this.left = null;
this.data = 0;
}
public Node(int n) {
this.data = n;
}
}
}}