leetcode-----32. 最长有效括号
Posted 景云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-----32. 最长有效括号相关的知识,希望对你有一定的参考价值。
思路
将整个序列分段,即刚刚不满足左括号数量大于等于右括号数量条件的情况;则任何一个合法序列在每个段内。
使用栈来存储位置。
代码
class Solution {
public:
int longestValidParentheses(string s) {
int n = s.size(), ans = 0;
stack<int> stk;
for (int i = 0, start = -1; i < n; ++i) {
if (s[i] == ‘(‘) stk.push(i);
else {
if (stk.size()) {
stk.pop();
if (stk.size()) {
ans = max(ans, i - stk.top());
} else {
ans = max(ans, i - start);
}
} else {
start = i;
}
}
}
return ans;
}
};
以上是关于leetcode-----32. 最长有效括号的主要内容,如果未能解决你的问题,请参考以下文章