长期更新,对使用 Java 刷 LeetCode 过程中一些有趣的题的感想和启发。 解题源代码仓库

题目

题目链接

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

有效字符串需满足:

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

示例 1:

输入: “()” 输出: true 示例 2:

输入: “()[]{}” 输出: true 示例 3:

输入: “(]” 输出: false 示例 4:

输入: “([)]” 输出: false 示例 5:

输入: “{[]}” 输出: true

我的思路

思路如下:

  1. 创建一个单向数组,进的时候随便进,出的时候必须在最上面才能出;
  2. input 处理完后单向数组必须空;
  3. 单独考虑 input = “” 的情况。

我的代码

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
//解决方法
class Solution {
     public boolean isValid(String s) {
        if (s == "") return true;
        List<String> list = new ArrayList<>();
        int length = 0;
        for (int i = 0;i < s.length();i++) {
            switch (s.charAt(i)){
                case '(':
                    list.add("a");
                    length = length + 1;
                    break;
                case '{':
                    list.add("b");
                    length = length + 1;
                    break;
                case '[':
                    list.add("c");
                    length = length + 1;
                    break;
                case ')':
                    if (length == 0) return false;
                    if (list.get(length-1) == "a") {
                        list.remove(length-1);
                        length = length -1;
                    }else return false;
                    break;
                case '}':
                    if (length == 0) return false;
                    if (list.get(length-1) == "b"){
                        list.remove(length-1);
                        length = length -1;
                    }else return false;
                    break;
                case ']':
                    if (length == 0) return false;
                    if (list.get(length-1) == "c"){
                        list.remove(length-1);
                        length = length -1;
                    }else return false;
                    break;
            }
        }
        if (length != 0) {
            return false;
        }
        return true;
    }
}


发现存在错别字或者事实错误?请麻烦您点击 这里 汇报。谢谢您!