首页 > 代码库 > Valid Parentheses
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 public: 3 bool isValid(string s) { 4 stack<char> S; 5 for(int i = 0; i < s.length(); i++){ 6 if(!S.empty()){ 7 char top = S.top(); 8 if(pair(top,s[i])) S.pop(); 9 else S.push(s[i]);10 }else S.push(s[i]);11 }12 if(S.empty()) return true;13 return false;14 }15 bool pair(char l, char r){16 if(l == ‘(‘ && r == ‘)‘) return true;17 if(l == ‘[‘ && r == ‘]‘) return true;18 if(l == ‘{‘ && r == ‘}‘) return true;19 return false;20 }21 };
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。