-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidateParentheses.java
More file actions
62 lines (57 loc) · 1.6 KB
/
ValidateParentheses.java
File metadata and controls
62 lines (57 loc) · 1.6 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
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.Stack;
public class ValidateParentheses {
public ValidateParentheses(String filename) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new FileReader(filename));
String line;
int idx;
int invalidFlag;
char ch, peekchar;
Stack<Character> parenthesesStack = new Stack<Character>();
while ((line = br.readLine()) != null) {
line = line.trim();
invalidFlag = 0;
for (idx = 0; idx < line.length(); idx++) {
ch = line.charAt(idx);
if (ch == '(' || ch == '{' || ch == '[') {
parenthesesStack.push(ch);
} else if (ch == ')' || ch == '}' || ch == ']') {
if (!parenthesesStack.empty()) {
peekchar = parenthesesStack.peek();
} else {
invalidFlag = 1;
break;
}
if (ch == ')' && peekchar == '(') {
parenthesesStack.pop();
} else if (ch == '}' && peekchar == '{') {
parenthesesStack.pop();
} else if (ch == ']' && peekchar == '[') {
parenthesesStack.pop();
} else {
invalidFlag = 1;
break;
}
} else {
invalidFlag = 1;
break;
}
}
if (invalidFlag == 1 || !parenthesesStack.empty()) {
System.out.println("False");
parenthesesStack.clear();
} else {
System.out.println("True");
}
}
}
public static void main (String[] args) throws IOException {
if (args.length != 1) {
System.out.println("Insufficient number of parameters passed. Exiting.");
System.exit(1);
}
ValidateParentheses vp = new ValidateParentheses(args[0]);
}
}