20. Valid Parentheses(括号匹配,用桟)

Posted 张乐乐章

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20. Valid Parentheses(括号匹配,用桟)相关的知识,希望对你有一定的参考价值。

Given a string containing just the characters ‘(‘‘)‘‘{‘‘}‘‘[‘ and ‘]‘, determine if the input string is valid.

The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.

 

 1 class Solution:
 2     def isValid(self, s):
 3         """
 4         :type s: str
 5         :rtype: bool
 6         """
 7         stack = []
 8         d={(:),[:],{:}}
 9         for i in s:
10             if i in d.keys():#遇到左括号 压桟
11                 stack.append(i)
12             else: #遇到右括号
13                 if stack ==[]:  #桟为空,没有匹配的
14                     return False
15                 else:
16                     if i==d[stack[-1]] : #如果匹配上,弹桟
17                         stack.pop()
18                     else:
19                         return False #没有匹配上
20         return stack==[] #如果遍历完之后桟为空,则全部匹配
21                 
22         
23         

 

以上是关于20. Valid Parentheses(括号匹配,用桟)的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode]20 Valid Parentheses 有效的括号

20. Valid Parentheses - 括号匹配验证

leetcode 20 Valid Parentheses 括号匹配

LeetCode 20. 有效的括号(Valid Parentheses)

20. Valid Parentheses(括号匹配,用桟)

LeetCode20_Valid Parentheses有效的括号