Valid Parentheses
2017-09-13 本文已影响0人
Wenyue_offer
class Solution {
public boolean isValid(String s) {
Stack<Character> stack = new Stack<>();
for (char c : s.toCharArray()){
if(c=='(' || c=='['|| c =='{'){
stack.push(c);
}
if(c==')'){
if(stack.isEmpty() || stack.pop() != '('){
return false;
}
}
if(c=='}'){
if(stack.isEmpty() || stack.pop() != '{'){
return false;
}
}
if(c==']'){
if(stack.isEmpty() || stack.pop() != '['){
return false;
}
}
}
return stack.isEmpty();
}
}