长期更新,对使用 Java 刷 LeetCode 过程中一些有趣的题的感想和启发。 解题源代码仓库
题目
给定一个只包括 ‘(‘,’)’,’{‘,’}’,’[‘,’]’ 的字符串,判断字符串是否有效。
有效字符串需满足:
左括号必须用相同类型的右括号闭合。 左括号必须以正确的顺序闭合。 注意空字符串可被认为是有效字符串。
示例 1:
输入: “()” 输出: true 示例 2:
输入: “()[]{}” 输出: true 示例 3:
输入: “(]” 输出: false 示例 4:
输入: “([)]” 输出: false 示例 5:
输入: “{[]}” 输出: true
我的思路
思路如下:
- 创建一个单向数组,进的时候随便进,出的时候必须在最上面才能出;
-
input
处理完后单向数组必须空; - 单独考虑
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;
}
}
本文作者 Auther:Soptq
本文链接 Link: https://soptq.me/2018/09/25/leetCode20/
版权声明 Copyright: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处。 Content on this site is licensed under the CC BY-NC-SA 4.0 license agreement unless otherwise noted. Attribution required.
发现存在错别字或者事实错误?请麻烦您点击 这里 汇报。谢谢您!