-
Notifications
You must be signed in to change notification settings - Fork 243
/
Valid Parentheses.java
47 lines (35 loc) · 1.01 KB
/
Valid Parentheses.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
class Solution {
public boolean isValid(String s) {
ArrayDeque<Character> dq = new ArrayDeque<Character>(s.length());
boolean valid = false;
int i;
for(i=0;i<s.length();i++){
char c = s.charAt(i);
if(c=='(' || c=='{' || c=='['){
dq.add(c);
}
if(dq.isEmpty()){
return true;
}
if(c=='}' && dq.getLast() != '{'){
return false;
}
else{
dq.removeLast();
}
if(c==')' && dq.getLast() != '('){
return false;
}
else{
dq.removeLast();
}
if(c==']' && dq.getLast() != '['){
return false;
}
else{
dq.removeLast();
}
}
return (true);
}
}