来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/valid-parentheses
题目
给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。
有效字符串需满足:
- 左括号必须用相同类型的右括号闭合。
- 左括号必须以正确的顺序闭合。
- 注意空字符串可被认为是有效字符串。
示例 1:
输入: "()"
输出: true
示例 2:
输入: "()[]{}"
输出: true
示例 3:
输入: "(]"
输出: false
示例 4:
输入: "([)]"
输出: false
示例 5:
输入: "{[]}"
输出: true
思路
我们可以通过栈来实现,遇到左括号,压入右括号,遇到右括号,相同则出栈,执行完成后栈不为空,则括号都是有效的。
边界,如果直接走到stack.isEmpty,或者出栈的括号跟当前括号不相等,则是括号匹配不上。
public boolean isValid(String s) {
HashMap<Character, Character> map = new HashMap<Character, Character>();
map.put('(', ')');
map.put('[', ']');
map.put('{', '}');
Stack<Character> stack = new Stack<Character>();
for (int i = 0; i < s.length(); ++i) {
char temp = s.charAt(i);
if (temp == '(') {
stack.push(map.get('('));
} else if (temp == '[') {
stack.push(map.get('['));
} else if (temp == '{') {
stack.push(map.get('{'));
} else if (stack.isEmpty() || temp != stack.pop()) {
return false;
}
}
return stack.isEmpty();
}
力扣执行结果
网友评论