LeetCode20_Valid Parentheses有效的括号
Posted grooovvve
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode20_Valid Parentheses有效的括号相关的知识,希望对你有一定的参考价值。
题目:
给定一个只包括 ‘(‘,‘)‘,‘‘,‘‘,‘[‘,‘]‘ 的字符串,判断字符串是否有效。
有效字符串需满足:
左括号必须用相同类型的右括号闭合。
左括号必须以正确的顺序闭合。
注意空字符串可被认为是有效字符串。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/valid-parentheses
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路:
使用栈这个数据结构;
Java实现:
1 import java.util.Stack; 2 3 class Solution 4 public boolean isValid(String s) 5 6 Stack<Character> stack = new Stack<>(); 7 for (int i = 0; i<s.length(); i++) 8 char c = s.charAt(i); 9 if(c == ‘(‘||c == ‘[‘|| c == ‘‘) 10 stack.push(c); 11 else 12 if(stack.isEmpty()) 13 return false; 14 char topChar = stack.pop(); 15 if(c==‘)‘&& topChar != ‘(‘) 16 return false; 17 if(c==‘]‘&& topChar != ‘[‘) 18 return false; 19 if(c==‘‘&& topChar != ‘‘) 20 return false; 21 22 23 return stack.isEmpty(); 24 25
C++实现:
1 class Solution 2 public: 3 bool isValid(string s) 4 stack<char> sk; 5 for(int i=0;i<s.length();i++) 6 7 if(s[i]==‘‘ || s[i]==‘(‘ || s[i] == ‘[‘) 8 sk.push(s[i]); 9 10 11 else 12 if(sk.empty()) 13 return false; 14 15 if(s[i] == ‘‘ && sk.top() != ‘‘) 16 return false; 17 18 if(s[i] == ‘)‘ && sk.top() != ‘(‘) 19 return false; 20 21 if(s[i] == ‘]‘ && sk.top() != ‘[‘) 22 return false; 23 24 sk.pop(); 25 26 27 return sk.empty(); 28 29 ;
以上是关于LeetCode20_Valid Parentheses有效的括号的主要内容,如果未能解决你的问题,请参考以下文章
leetcode_20 Valid Parentheses(String)
LeetCode20_Valid Parentheses有效的括号
#Leetcode# 20.Valid Parentheses