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

Longest Valid Parentheses

时间:2015-06-02 06:47:55      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

这道题最大的问题是位置容易想不清楚

public class Solution {
    public int longestValidParentheses(String s) {
        // http://blog.csdn.net/linhuanmars/article/details/20439613
        
        if(s ==null || s.length()<2) return 0;
        
        Stack<Integer> st = new Stack<Integer>();
        
        int max =0, start =0;
        
        for(int i = 0; i< s.length(); i++){
            if(s.charAt(i)==‘(‘){
                st.push(i);
            }else{
                if(st.isEmpty()){
                    start = i+1;
                }else{
                    st.pop();
                    max = st.isEmpty()? Math.max(max, i-start+1):Math.max(max, i-st.peek()); // 和当前‘(‘配对的必须是合法的,也就是说(()和最后一个配对的必须是第二个(而不是开头的那个
                }
            }
                
        }
        
        return max;
    }
}

 

Longest Valid Parentheses

标签:

原文地址:http://www.cnblogs.com/jiajiaxingxing/p/4545380.html

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