Catalogue
来源:Leetcode: 32. Longest Valid Parentheses
Longest Valid Parentheses
Given a string containing just the characters ‘(‘ and ‘)’, find the length of the longest valid (well-formed) parentheses substring.
要求子序列的所有括号是连续的、无间断的。
Example 1:
1 | Input: "(()(()" |
Example 2:
1 | Input: ")()())" |
我的思路,使用动态规划,可以找到其最优子结构。具体如下图所示:
JavaScript 的实现:
1 | /** |