您的位置:首页 > 其它

Leetcode no. 32

2016-05-29 16:46 267 查看
32. Longest Valid Parentheses

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.

public class Solution {
public int longestValidParentheses(String s) {
Stack<Integer> stack= new Stack<Integer>();
int max=0;
int left=-1;
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()) max=Math.max(max, i-left);
else max= Math.max(max, i-stack.peek());
}
}
}
return max;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: