LeetCode 20. 有效的括号(Valid Parentheses)
2021/8/23 23:06:10
本文主要是介绍LeetCode 20. 有效的括号(Valid Parentheses),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
20. 有效的括号
给定一个只包括 '('
,')'
,'{'
,'}'
,'['
,']'
的字符串 s
,判断字符串是否有效。
有效字符串需满足:
- 左括号必须用相同类型的右括号闭合。
- 左括号必须以正确的顺序闭合。
Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
An input string is valid if:
- Open brackets must be closed by the same type of brackets.
- Open brackets must be closed in the correct order.
示例 1:
输入:s = "()" 输出:true
示例 2:
输入:s = "()[]{}" 输出:true
示例 3:
输入:s = "(]" 输出:false
示例 4:
输入:s = "([)]" 输出:false
示例 5:
输入:s = "{[]}" 输出:true
提示:
1 <= s.length <= 104
s
仅由括号'()[]{}'
组成
题解一(python):
1 class Solution: 2 def isValid(self, s: str) -> bool: 3 dic = {')':'(',']':'[','}':'{'} # 字典 4 stack = [] 5 for i in s: 6 if stack and i in dic: # 若栈不为空且i为有效字符串 7 if stack[-1] == dic[i]: # 若栈顶元素能和dic[i]匹配,则出栈 8 stack.pop() 9 else: 10 return False # 否则就返回false 11 else: 12 stack.append(i) # 若i在栈中无,则压栈 13 14 return not stack
这篇关于LeetCode 20. 有效的括号(Valid Parentheses)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23新能源车企如何通过CRM工具优化客户关系管理,增强客户忠诚度与品牌影响力
- 2024-12-23原创tauri2.1+vite6.0+rust+arco客户端os平台系统|tauri2+rust桌面os管理
- 2024-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程