摘要:验证大小中括号是否成对闭合匹配验证大小中括号是否成对闭合匹配。
验证大小中括号是否成对闭合匹配 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..
example 1
input: "{{()}}" output: True
example 2
input: "(([)])" output: False
example 3
input: "" output: True思路
使用栈(先进后出)
如果遇到左边符号{,[,(,则将其对应的右边符号},],)入栈,如果遇到右边符号,则判断栈顶元素是否匹配,不匹配则返回False
最后栈空,则完全闭合匹配,返回True
代码class Solution(object): def isValid(self, s): """ :type s: str :rtype: bool """ brackets = { "(": ")", "[": "]", "{": "}" } stack = [] for i in s: if i in brackets: stack.append(brackets[i]) elif i in brackets.values(): if len(stack) == 0 or stack.pop(-1) != i: return False return len(stack) == 0
本题以及其它leetcode题目代码github地址: github地址
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/38663.html
摘要:本文主要分析对象是的源码中的正则表达式。表示空白符,包括空格,水平制表符,垂直制表符,换行符,回车符,换页符。 对于Zepto源码分析,可以说是每个前端修炼自己js技能的必经之路。当然,在读源码过程中,比较难以理解的地方,就是里面出现的各种神奇的正则表达式。 本文主要分析对象是zepto@1.1.6的源码中的正则表达式。 这篇文章,主要总结了zepto源码中使用到的一些正则表达式,分析...
摘要:小鹿题目给定一个只包括,,,,,的字符串,判断字符串是否有效。有效字符串需满足左括号必须用相同类型的右括号闭合。注意空字符串可被认为是有效字符串。除去这两种情况都不是符合条件的。 Time:2019/4/11Title: Valid ParenthesesDifficulty: EasyAuthor: 小鹿 题目:Valid Parentheses Given a string c...
阅读 1372·2021-11-08 13:14
阅读 719·2021-09-23 11:31
阅读 1020·2021-07-29 13:48
阅读 2764·2019-08-29 12:29
阅读 3342·2019-08-29 11:24
阅读 1877·2019-08-26 12:02
阅读 3662·2019-08-26 10:34
阅读 3418·2019-08-23 17:07