32 Longest Valid Parentheses
https://leetcode.com/problems/longest-valid-parentheses/
solution
动态规划
以s[i]结尾的字符串能够构成的最长的匹配串的长度
时间复杂度:O() 空间复杂度:O()
经典做法
一个栈维护左括号的下标,然后遇到匹配的右括号时弹出左括号并通过下标计算长度
follow op
Last updated
https://leetcode.com/problems/longest-valid-parentheses/
动态规划
以s[i]结尾的字符串能够构成的最长的匹配串的长度
时间复杂度:O() 空间复杂度:O()
经典做法
一个栈维护左括号的下标,然后遇到匹配的右括号时弹出左括号并通过下标计算长度
Last updated