LeetCode20. 有效的括号
给定一个只包括 '(',')','{','}','[',']' 的字符串 s ,判断字符串是否有效。
有效字符串需满足:
左括号必须用相同类型的右括号闭合。
左括号必须以正确的顺序闭合。
示例 1:
输入:s = "()"
输出:true
示例 2:
输入:s = "()[]{}"
输出:true
示例 3:
输入:s = "(]"
输出:false
示例 4:
输入:s = "([)]"
输出:false
使用栈辅助
时间复杂度O(N),空间复杂度O(N)
class Solution { public boolean isValid(String s) { //字符串长度一定为偶数,如果是奇数则直接返回false便可 if(s.length()%2!=0) return false; Deque<Character> stack = new LinkedList<>(); //使用哈希表存储符号的对应 Map<Character,Character> map = new HashMap<>(); map.put(')', '('); map.put(']', '['); map.put('}', '{'); for(int i = 0;i<s.length();i++) { char ch = s.charAt(i); if(ch == '(' || ch=='[' || ch=='{') stack.push(ch); else { //先检查栈中是否有左括号可以匹配 if(stack.isEmpty()) return false; char top = stack.pop(); if(map.get(ch) != top) return false; } } //检查stack中有无存左括号 if(!stack.isEmpty()) return false; return true; } }