码迷,mamicode.com
首页 > 其他好文 > 详细

LongestValidParentheses, 求最长合法括号子串长度-----同类问题ValidParentheses,GenerateParentheses

时间:2016-06-08 20:29:32      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:

问题描述:求括号字符串中最长合法子串长度。例如:()((),返回2,而不是4.

算法分析:还是利用栈,和判断合法括号对是一样的。

 1 public static int longestValidParentheses(String s) {
 2         Stack<int[]> stack = new Stack<int[]>();
 3         int result = 0;
 4      
 5         for(int i=0; i<=s.length()-1; i++)
 6         {
 7             char c = s.charAt(i);
 8             if(c==‘(‘)//如果是左括号
 9             {
10                 int[] a = {i,0};
11                 stack.push(a);
12             }
13             else//如果是右括号
14             {
15                 if(stack.empty()||stack.peek()[1]==1)//如果栈为空或者栈顶元素为右括号
16                 {
17                     int[] a = {i,1};
18                     stack.push(a);
19                 }
20                 else
21                 {
22                     stack.pop();
23                     int currentLen=0;
24                     if(stack.empty())
25                     {
26                         currentLen = i+1;
27                     }
28                     else
29                     {
30                         currentLen = i-stack.peek()[0];
31                     }
32                     result = Math.max(result, currentLen);
33                 }
34             }
35         }
36      
37         return result;
38     }

 

LongestValidParentheses, 求最长合法括号子串长度-----同类问题ValidParentheses,GenerateParentheses

标签:

原文地址:http://www.cnblogs.com/masterlibin/p/5571223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!