LeetCode 20. Valid Parentheses
Posted Travelller
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 20. Valid Parentheses相关的知识,希望对你有一定的参考价值。
栈的教科书式套路。
class Solution { public: bool isValid(string s) { stack<char> a; int n=s.length(); for (int i=0;i<n;i++){ if (s[i]==‘(‘||s[i]==‘[‘||s[i]==‘{‘) a.push(s[i]); else { if (a.empty()) return false; char t=a.top(); a.pop(); if (s[i]==‘}‘&&t!=‘{‘) return false; if (s[i]==‘)‘&&t!=‘(‘) return false; if (s[i]==‘]‘&&t!=‘[‘) return false; } } if (a.empty()) return true; else return false; } };
以上是关于LeetCode 20. Valid Parentheses的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode - 20. Valid Parentheses
[LeetCode]20. Valid Parentheses
[LeetCode]20 Valid Parentheses 有效的括号