有效的括号

https://leetcode-cn.com/problems/valid-parentheses/description/

题目描述

给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。
有效字符串需满足:
左括号必须用相同类型的右括号闭合。
左括号必须以正确的顺序闭合。
注意空字符串可被认为是有效字符串。

示例

输入: "()"
输出: true
输入: "()[]{}"
输出: true
输入: "([)]"
输出: false

思路

1.将括号量化为数字;
2.如果是左括号,则放进栈中,如果是右括号则与栈顶元素比较是否匹配,匹配则栈顶元素出栈;
3.考虑特殊情况:

  • 输入为空字符串
  • 输入的字符串只包含一个右括号
  • 当栈为空,当前是右括号,会溢出

代码

class Solution {
    public boolean isValid(String s) {
         if (s.length()==0) {
            return true;
        }
        HashMap map = new HashMap();
        map.put('(', 1);
        map.put(')', -1);
        map.put('{', 2);
        map.put('}', -2);
        map.put('[', 3);
        map.put(']', -3);
        LinkedList linkedList = new LinkedList();
        for (int i = 0; i < s.length(); i++) {
            if (map.get(s.charAt(i)) < 0 && linkedList.size()==0) {
                return false;
            }
            if (map.get(s.charAt(i)) > 0) {
                linkedList.add(map.get(s.charAt(i)));
            } else {
                if (linkedList.get(linkedList.size() - 1) + map.get(s.charAt(i)) == 0) {
                    linkedList.remove(linkedList.size() - 1);

                } else {
                    return false;
                }
            }
        }
        return linkedList.size()==0;
    }
}

你可能感兴趣的:(有效的括号)