标签:key -name opera tco cpp longest ali UNC token
给定一个只包含 ‘(‘ 和 ‘)’ 的字符串,找出最长的包含有效括号的子串的长度。
示例 1:
输入: "(()"
输出: 2
解释: 最长有效括号子串为 "()"
示例 2:
输入: ")()())"
输出: 4
解释: 最长有效括号子串为 "()()"
class Solution {
public:
int longestValidParentheses(string s) {
//等待解决
}
};
leetcode#32. Longest Valid Parentheses(未解决)
标签:key -name opera tco cpp longest ali UNC token
原文地址:https://www.cnblogs.com/lsaejn/p/9724694.html