美文网首页刷爆力扣
【3】有效的括号

【3】有效的括号

作者: 公孙剑人 | 来源:发表于2020-12-31 22:53 被阅读0次

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/valid-parentheses

    题目

    给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。

    有效字符串需满足:

    1. 左括号必须用相同类型的右括号闭合。
    2. 左括号必须以正确的顺序闭合。
    3. 注意空字符串可被认为是有效字符串。

    示例 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();
        }
    
    力扣执行结果

    相关文章

      网友评论

        本文标题:【3】有效的括号

        本文链接:https://www.haomeiwen.com/subject/bhqdoktx.html