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) {
if (s == null || s.length() == 0) {
return 0;
}
Stack<Integer> stack = new Stack<Integer>();
int start = 0;
int res = 0;
for (int i = 0; i < s.length(); i++) {
if (s.charAt(i) == '(') {
stack.push(i);
} else {
if (stack.isEmpty()) {
start = i + 1;
} else {
stack.pop();
if (stack.isEmpty()) {
res = Math.max(res, i-start+1);
} else {
res = Math.max(res, i-stack.peek());
}
}
}
}
return res;
}
}
本文介绍了一个算法,用于找到给定字符串中由'('和')'组成的最长有效括号子串。通过使用栈来跟踪括号状态,实现高效求解。
363

被折叠的 条评论
为什么被折叠?



