给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。
有效字符串需满足:
左括号必须用相同类型的右括号闭合。
左括号必须以正确的顺序闭合。
注意空字符串可被认为是有效字符串。
示例 1:
输入: "()"
输出: true
示例 2:
输入: "()[]{}"
输出: true
示例 3:
输入: "(]"
输出: false
示例 4:
输入: "([)]"
输出: false
示例 5:
输入: "{[]}"
输出: true
/**
* @param {string} s
* @return {boolean}
*/
var isValid = function(s) {
if(s === "")
return true;
if(s.length === 1 || s.length%2 !== 0)
return false;
let arr = s.split("");
let stack = [];
let left = ["(", "[", "{"];
let right = [")", "]", "}"];
while(arr.length) {
let cur = arr.shift();
if(left.includes(cur)) {
stack.push(cur);
}
else if(right.includes(cur)) {
if(stack.length === 0)
return false;
let top = stack.pop();
if(!match(top, cur))
return false;
}
}
if(stack.length !== 0)
return false;
return true;
};
function match(l, r) {
if(l === "(")
return r === ")";
if(l === "[")
return r === "]";
if(l === "{")
return r === "}";
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。