给定一个只包括 '(',')','{','}','[',']' 的字符串 s ,判断字符串是否有效。
有效字符串需满足:
1.左括号必须用相同类型的右括号闭合。
2.左括号必须以正确的顺序闭合。
/** * @param {string} s * @return {boolean} */ var isValid = function(s) { if(s.length%2===1){ return false; } const stack = []; for(let i = 0; i<s.length;i++){ const c=s[i]; if(c==='('||c==='{'||c==='['){ stack.push(c); }else{ const t = stack[stack.length-1] if( (t==='('&&c===')')|| (t==='{'&&c==='}')|| (t==='['&&c===']') ){ stack.pop(); } else{ return false; } } } return stack.length ===0; };