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