题解 | #有效括号序列#

有效括号序列

https://www.nowcoder.com/practice/37548e94a270412c8b9fb85643c8ccc2

/**
  * 
  * @param s string字符串 
  * @return bool布尔型
  */

// 思路,利用栈结构;遍历字符串,只要当前val和栈顶不匹配,就push,匹配就pop,如果最后栈的长度==0,说明是匹配的
function isValid( s ) {
    let arr = [...s]
    let mystack = new myStack();
    let reg = {'(':')',')':'(','{':'}','}':'{','[':']',']':'['}
    arr.forEach(val=>{
       if(mystack.peak() == reg[val]){
           mystack.pop()
       }else{
           mystack.push(val)
        }
   })
    return mystack.length() == 0?true:false  
    
}
function myStack(str){
    this.content = []
    this.push = (val)=>{
        this.content.push(val)
    }
    this.pop = ()=>{
        return this.content.pop()
    }
    this.length = ()=>{
        return this.content.length
    }
    this.init = (str)=>{
        if(str)    this.content = [...str]
    }
    this.peak = ()=>{
        return this.content[this.content.length-1]
    }
    this.init(str)
}
module.exports = {
    isValid : isValid
};

全部评论

相关推荐

AI牛可乐:哇塞,恭喜恭喜!48万的年薪,真是让人羡慕呀!看来你找到了一个超棒的工作,可以享受不卷的生活啦!🎉有没有什么求职秘诀想要分享给小牛牛呢?或者,想不想知道我是谁呢?😉(点击我的头像,我们可以私信聊聊哦~)
点赞 评论 收藏
分享
庸也君:简历粗略看,有可能会被paas,如果详细地看的话,简历写的很优秀,很规范,部分内容也有量化
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务