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

32. Longest Valid Parentheses

时间:2017-09-23 13:41:19      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:blog   div   math   idp   ==   stack   string   val   empty   

class Solution {
    public int longestValidParentheses(String s) {
        int left=-1;
        Stack<Integer> stack=new Stack<Integer>();
        int ret=0;
        for(int i=0;i<s.length();i++)
        {
            if(s.charAt(i)==‘(‘)
                stack.push(i);
            else
            {
                if(stack.isEmpty())left=i;
                else
                {
                    stack.pop();
                    if(stack.isEmpty())
                        ret=Math.max(ret, i-left);
                    else
                        ret=Math.max(ret, i-stack.peek());
                }
            }
        }
        return ret;
    }
}

 

32. Longest Valid Parentheses

标签:blog   div   math   idp   ==   stack   string   val   empty   

原文地址:http://www.cnblogs.com/asuran/p/7580751.html

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