Valid Parentheses
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
Example
The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.
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 | public class Solution { /** * @param s A string * @return whether the string is a valid parentheses */ public boolean isValidParentheses(String s) { // Write your code here Stack<Character> stack = new Stack<Character>(); for (int i = 0; i < s.length(); i++) { char c = s.charAt(i); switch (c) { case '(': stack.push(c); break; case '[': stack.push(c); break; case '{': stack.push(c); break; case ')': if (stack.isEmpty() || stack.pop() != '(') { return false; } break; case ']': if (stack.isEmpty() || stack.pop() != '[') { return false; } break; case '}': if (stack.isEmpty() || stack.pop() != '{') { return false; } break; default: break; } } if (stack.isEmpty()) { return true; } else { return false; } } } |