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

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

1.  题目:

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

For "(()", the longest valid parentheses substring is "()", which has length = 2.

Another example is ")()())", where the longest valid parentheses substring is "()()", which has length = 4.

2.  思路

初始思路

从字符串中每个位置开始,求以该位置开始的最长合法字串长度,然后从这些字串中选出最长的。时间复杂度O(n^2)

改进

可以利用前面已经产生的结果,减少匹配不必要的匹配

1 class Solution { 2         public int longestValidParentheses(String s) { 3             int[] records = new int[s.length()]; 4             int max = 0; 5             for (int i = 1; i < s.length(); i++) { 6                 boolean match = false; 7                 if ( s.charAt(i) == ')') { 8                     if (s.charAt(i-1) == '(') { 9                         records[i] = 2;10                         match = true;11                     }12                     else if (records[i-1] > 0 && i - records[i-1] > 0 && s.charAt(i - records[i-1] - 1) == '(') {13                         records[i] = records[i - 1] + 2;14                         match = true;15                     }16                     if  (match) {17                         if (i - records[i] >=  0 && records[i - records[i]] > 0) {18                             records[i] += records[i - records[i]];19                         }20                         max = max > records[i] ? max :  records[i];21                     }22                 }23             }24             return max;25         }26     }

 

转载于:https://www.cnblogs.com/hungry-bird/p/7867339.html

你可能感兴趣的文章
Swift - UIView的常用属性和常用方法总结
查看>>
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
Java编程思想总结笔记Chapter 5
查看>>
[LeetCode]662. Maximum Width of Binary Tree判断树的宽度
查看>>
WinForm聊天室
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>
Java 线程安全问题
查看>>
selenium学习中遇到的问题
查看>>
大数据学习之一——了解简单概念
查看>>
Linux升级内核教程(CentOS7)
查看>>
Lintcode: Partition Array
查看>>
分享适合个人站长的5类型网站
查看>>
类别的三个作用
查看>>
【SICP练习】85 练习2.57
查看>>
runC爆严重安全漏洞,主机可被攻击!使用容器的快打补丁
查看>>
Maximum Product Subarray
查看>>
solr相关配置翻译
查看>>
通过beego快速创建一个Restful风格API项目及API文档自动化(转)
查看>>
解决DataSnap支持的Tcp长连接数受限的两种方法
查看>>