-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstructTreeBrackets.java
More file actions
78 lines (61 loc) · 1.75 KB
/
ConstructTreeBrackets.java
File metadata and controls
78 lines (61 loc) · 1.75 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
73
74
75
76
77
package Trees;
public class ConstructTreeBrackets {
static int start = 0;
static Node constructTree(String s) {
if (s.length() == 0 || s == null || start >= s.length()) return null;
boolean neg = false;
if (s.charAt(start) == '-') {
neg = true;
start++;
}
int num = 0;
while (start < s.length() && Character.isDigit(s.charAt(start))) {
int digit = Character.getNumericValue(s.charAt(start));
num = num * 10 + digit;
start++;
}
if (neg) num = -num;
Node node = new Node(num);
// no root node.
if (num == 0) {
start++;
return null;
}
// only root node.
if (start >= s.length()) {
return node;
}
// Left Node.
if (start < s.length() && s.charAt(start) == '(') {
start++;
node.left = constructTree(s);
}
if (start < s.length() && s.charAt(start) == ')') {
start++;
return node;
}
// Right Tree.
if (start < s.length() && s.charAt(start) == '(') {
start++;
node.right = constructTree(s);
}
if (start < s.length() && s.charAt(start) == ')') {
start++;
return node;
}
return node;
}
// Print tree function
public static void printTree(Node node) {
if (node == null)
return;
System.out.println(node.val + " ");
printTree(node.left);
printTree(node.right);
}
public static void main(String[] args) {
String s = "4(2(3)(1))(6(5))";
Node root = constructTree(s);
printTree(root);
}
}