-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTree.java
91 lines (80 loc) · 2.13 KB
/
Tree.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
import java.net.SocketTimeoutException;
import java.util.*;
class Node {
int data;
Node left;
Node right;
Node(int data) {
this.data = data;
}
}
public class Tree {
static Scanner sc = new Scanner(System.in);
public static void main(String[] args) {
Node root = creatNode();
System.out.println("preorder: ");
preoder(root);
System.out.println();
System.out.println("inorder: ");
inoder(root);
System.out.println();
System.out.println("postorder: ");
postoder(root);
System.out.println();
System.out.println("The height of the BST is:");
System.out.println(height(root));
System.out.println("The total node of BST is: ");
System.out.println(size(root));
}
static Node creatNode() {
Node Root = null;
int a;
System.out.println("Enter data:");
a = sc.nextInt();
if (a == -1) {
return null;
}
Root = new Node(a);
System.out.println("Enter the left data of " + a);
Root.left = creatNode();
System.out.println("Enter the right data of " + a);
Root.right = creatNode();
return Root;
}
static void preoder(Node root) {
if (root == null) {
return;
}
System.out.print(root.data + " ");
preoder(root.left);
preoder(root.right);
}
static void inoder(Node root) {
if (root == null) {
return;
}
inoder(root.left);
System.out.print(root.data + " ");
inoder(root.right);
}
static void postoder(Node root) {
if (root == null) {
return;
}
postoder(root.left);
postoder(root.right);
System.out.print(root.data + " ");
}
static int height(Node node) {
if (node == null) {
return 0;
}
return Math.max(height(node.left), height(node.right)) + 1;
}
static int size(Node root) {
if (root == null) {
return 0;
}
return size(root.left) + size(root.right) + 1;
}
}