LeetCode-020-有效的括号
2021/6/25 23:30:11
本文主要是介绍LeetCode-020-有效的括号,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
有效的括号
题目描述:给定一个只包括 '(',')','{','}','[',']' 的字符串 s ,判断字符串是否有效。
有效字符串需满足:
左括号必须用相同类型的右括号闭合。
左括号必须以正确的顺序闭合。示例说明请见LeetCode官网。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/valid-parentheses/
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
解法一:利用栈
初始化一个左括号栈leftParentheses,遍历字符串s的每个字符,当遇到左括号时,将当前字符入栈,当遇到右括号时,判断leftParentheses栈顶的字符是否是当前字符对应的左括号,如果不是,返回无效;否则出栈。遍历完成后,判断leftParentheses是否为空,如果不为空,说明左括号没有对应的右括号,返回无效;否则,有效。
import java.util.Stack; public class Solution { public static boolean isValid(String s) { if (s == null || s.length() == 0) { return true; } Stack<Character> leftParentheses = new Stack<>(); for (char parentheses : s.toCharArray()) { if (parentheses == '(' || parentheses == '{' || parentheses == '[') { leftParentheses.push(parentheses); } else if (parentheses == ')') { if (leftParentheses.size() > 0 && leftParentheses.peek() == '(') { leftParentheses.pop(); } else { return false; } } else if (parentheses == ']') { if (leftParentheses.size() > 0 && leftParentheses.peek() == '[') { leftParentheses.pop(); } else { return false; } } else if (parentheses == '}') { if (leftParentheses.size() > 0 && leftParentheses.peek() == '{') { leftParentheses.pop(); } else { return false; } } } if (leftParentheses.size() != 0) { return false; } return true; } public static void main(String[] args) { System.out.println(isValid("()[]{}")); } }
【每日寄语】每个睡醒后的早晨都是一件礼物,把每个开心后的微笑当成一个习惯,美好的一天从现在开始。
这篇关于LeetCode-020-有效的括号的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-27Rocket消息队列资料:新手入门指南
- 2024-11-27rocket消息队资料详解与入门指南
- 2024-11-27RocketMQ底层原理资料详解入门教程
- 2024-11-27RocketMQ项目开发资料:新手入门教程
- 2024-11-27RocketMQ项目开发资料详解
- 2024-11-27RocketMQ消息中间件资料入门教程
- 2024-11-27初学者指南:深入了解RocketMQ源码资料
- 2024-11-27Rocket消息队列学习入门指南
- 2024-11-26Rocket消息中间件教程:新手入门详解
- 2024-11-26RocketMQ项目开发教程:新手入门指南