博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
#Leetcode# 32. Longest Valid Parentheses
阅读量:5299 次
发布时间:2019-06-14

本文共 937 字,大约阅读时间需要 3 分钟。

 

Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.

Example 1:

Input: "(()"Output: 2Explanation: The longest valid parentheses substring is "()"

Example 2:

Input: ")()())"Output: 4Explanation: The longest valid parentheses substring is "()()"

代码:

class Solution {public:    int longestValidParentheses(string s) {        int ans = 0, start = 0;        stack
m; for (int i = 0; i < s.size(); ++i) { if (s[i] == '(') m.push(i); else if (s[i] == ')') { if (m.empty()) start = i + 1; else { m.pop(); if(m.empty()) ans = max(ans, i - start + 1); else ans = max(ans, i - m.top()); } } } return ans; }};

  最长有效括号

转载于:https://www.cnblogs.com/zlrrrr/p/10679852.html

你可能感兴趣的文章
MIT Scheme 的基本使用
查看>>
程序员的“机械同感”
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
Python Web框架Django (零)
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
Attribute(特性)与AOP
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
Competing Consumers Pattern (竞争消费者模式)
查看>>
HDUOJ ------1398
查看>>
cf--------(div1)1A. Theatre Square
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
VSCODE更改文件时,提示:EACCES: permission denied的解决办法(mac电脑系统)
查看>>