码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode Longest Valid Parentheses

时间:2014-08-12 12:54:04      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   for   ar   div   

class Solution {
public:
    int longestValidParentheses(string s) {
        vector<int> stack;
        int maxlen = 0;
        int curlen = 0;
        int last = -1;
        int len = s.length();
        for (int i=0; i<len; i++) {
            char ch = s[i];
            if (ch == () {
                stack.push_back(i);
                continue;
            }
            if (stack.empty()) {
                last = i;
                continue;
            }
            stack.pop_back();
            if (stack.empty()) {
                curlen = i - last;
            } else {
                curlen = i - stack.back();
            }
            
            if (curlen > maxlen) maxlen = curlen;
        }
        
        return maxlen;
    }
};

参考:http://www.cnblogs.com/zhuli19901106/p/3547419.html

last用来记录最后一个无法匹配的右括号的位置,当stack为空时,必然存在一个合法的括号序列,而这个序列的起始肯定是last后面的一个位置。

智商有限,做了好久,只有看答案了。。。

LeetCode Longest Valid Parentheses,布布扣,bubuko.com

LeetCode Longest Valid Parentheses

标签:style   blog   http   color   io   for   ar   div   

原文地址:http://www.cnblogs.com/lailailai/p/3906652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!