Chinaunix首页 | 论坛 | 博客
  • 博客访问: 266721
  • 博文数量: 170
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1709
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-06 18:01
文章分类

全部博文(170)

文章存档

2016年(11)

2015年(130)

2014年(29)

分类: Java

2015-05-02 10:53:04

//Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.
//
//For "(()", the longest valid parentheses substring is "()", which has length = 2.
//
//Another example is ")()())", where the longest valid parentheses substring is "()()", which has length = 4.
import java.util.Stack;


public class LongestValidParentheses {


public static void main(String[] args) {
// TODO 自动生成的方法存根


}
public int longestValidParentheses(String s) {
//        if(s==null||s.length()==0)
//         return 0;
//        int start=0;
//        Stack stack =new Stack();
//        int max=0;
//        int cur=0;
//        for(int i=0;i //         if(s.charAt(i)=='('){
//         stack.add(i);
//         }else {
// if(!stack.isEmpty()){
// int midstart=stack.peek();
// stack.pop();
// if(!stack.isEmpty()){
// max=Math.max(max, i-midstart+1);
// }
// }
// else {
// cur=i-start;
// max=Math.max(cur, max);
// start=i+1;
// }
// }
//        }
//        if(stack.isEmpty()){
//         cur=s.length()-start;
//         max=Math.max(cur, max);
//        }
//        return max;
    if(s==null||s.length()==0)
    return 0;
    int start=0;
    Stack stack =new Stack();
    int max=0;
    
    for(int i=0;i     if(s.charAt(i)=='('){
    stack.push(i);
    }else {
if(stack.isEmpty()){
start=i+1;
}
else {
stack.pop();
if(stack.isEmpty()){
max=Math.max(i-start+1, max);
}else {
//在中间遇到(()() 4-0
max=Math.max(i-stack.peek(), max);
}

}
}
    }
    return max;
}
}

阅读(710) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~