摘要: 题目 最长有效括号 方法一:dp int longestValidParentheses(string s) { int ans = 0; stack<int> sta; sta.push(-1); for(int i = 0;i < s.size();i ++) { if(s[i] == '(') 阅读全文
posted @ 2023-02-21 19:02 俄罗斯刺沙蓬 阅读(20) 评论(0) 推荐(0) 编辑
返回顶端