最开始看这道题的时候觉得直接按照有效字符串的思路去做就可以了,但是一直wa,后来发现这东西需要像最大矩形那道题目一样,需要记录一个起始点的下标的栈,然后根据pop的时候,设置相应规则进行迭代, 代码如下
-
int longestValidParentheses(string s){
-
stack<int> st;
-
int start=-1, len=s.length();
-
int res=0;
-
for(int i=0; i<len; i++){
-
if(s[i]=='(')st.push(i);// 左括号下标入栈,防止算多
-
else{
-
if(st.empty())start=i;// 弹出非法才会更新start
-
else{
-
st.pop();
-
if(st.empty())res=max(res,i-start);// 为空,则(start,i]满足全匹配
-
else res=max(res,i-st.top());// 若不为空,则(st.top,i]满足全匹配
-
}
-
}
-
}
-
return res;
-
}
阅读(1673) | 评论(0) | 转发(0) |