-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtreefromstring.java
149 lines (122 loc) · 3.19 KB
/
treefromstring.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
package binnarytree;
import java.util.Scanner;
import java.util.Stack;
public class treefromstring {
public class BinaryTree {
public class Node {
public int data;
public Node left;
public Node right;
Node(int data, Node left, Node right) {
this.data = data;
this.left = left;
this.right = right;
}
}
public Node root = null;
private int size = 0;
BinaryTree() {
Scanner scn = new Scanner(System.in);
this.root = input(scn, null, false);
}
public BinaryTree(String s) {
Scanner scn = new Scanner(System.in);
this.root = inputfromstring(s, null);
}
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;
}
private Node inputfromstring(String s, Node parent) {
if (s.length() == 0) {
return null;
}
Node node = new Node(0, null, null);
int i = 0;
while (i < s.length() && s.charAt(i) != '(') {
i++;
}
int start = i + 1;
String no = s.substring(0, i);
node.data = Integer.parseInt(no);
if (i < s.length()) {
Stack<Character> stack = new Stack<>();
stack.push(s.charAt(i));
i++;
while (!stack.isEmpty() && i < s.length()) {
if (s.charAt(i) == '(') {
stack.push(s.charAt(i));
} else if (s.charAt(i) == ')') {
stack.pop();
}
i++;
}
int end = i;
String leftsub = s.substring(start, end - 1);
node.left = inputfromstring(leftsub, node);
if (end + 1 < s.length() - 1) {
String rightsub = s.substring(end + 1, s.length() - 1);
node.right = inputfromstring(rightsub, node);
}
}
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 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
// false true 73 false false
treefromstring m = new treefromstring();
// BinaryTree tree = m.new BinaryTree("1(2)(3)");
BinaryTree tree = m.new BinaryTree("4(2(3)(1))(6)");
tree.display();
System.out.println();
}
}