码迷,mamicode.com
首页 > 其他好文 > 详细

20-Valid Parentheses

时间:2019-08-16 20:25:29      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:val   highlight   判断   ring   string   append   pop   tac   lse   

题目:判断大、中、小括号是否合法。“()”、"([)]"、"{(([])}"

def isValid(string):
    dic = {‘}‘:‘{‘,‘]‘:‘[‘,‘)‘:‘(‘}
    stack = []
    for s in string:
        if s not in dic:
            stack.append(s)
        else:
            if len(stack)>0 and dic[s]==stack[-1]:
                stack.pop()
            else:
                return False

    return True

  

20-Valid Parentheses

标签:val   highlight   判断   ring   string   append   pop   tac   lse   

原文地址:https://www.cnblogs.com/kingshine007/p/11366033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!