32-Longest Valid Parentheses

題目描述:

https://leetcode.com/problems/longest-valid-parentheses/

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

Example 1:

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

Example 2:

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

 

代碼解答:

package com.jack.algorithm;

import java.util.Stack;

/**
 * create by jack 2019/5/4
 *
 * @author jack
 * @date: 2019/5/4 19:44
 * @Description:
 */
public class LongestValidParentheses {
    /**
     * 32-題目描述:
     * https://leetcode.com/problems/longest-valid-parentheses/
     * @param s
     * @return
     */
    public static int longestValidParentheses(String s) {
        int maxans = 0;
        Stack<Integer> stack = new Stack<>();
        stack.push(-1);
        for (int i = 0; i < s.length(); i++) {
            //如果是左括號,則入棧
            if (s.charAt(i) == '(') {
                stack.push(i);
            } else {
                //如果是右括號則出棧
                stack.pop();
                if (stack.empty()) {
                    //如果棧爲空了,則記下當前的下標
                    stack.push(i);
                } else {
                    //如果不爲空,則獲取最大長度
                    maxans = Math.max(maxans, i - stack.peek());
                }
            }
        }
        return maxans;
    }

    public static void main(String[] args) {
        //String s = "(()";
        String s = ")()())";
        int rs =longestValidParentheses(s);
        System.out.println("rs="+rs);
    }

}

源碼:

源碼

 

 

 

 

 

 

 

 

 

 

 

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章