[Leetcode]32. Longest Valid Parentheses @python__python

來源:互聯網
上載者:User
題目

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.

Subscribe to see which companies asked this question 題目要求

字串s由左右括弧組成(‘(‘,’)’),找到字串中最長有效括弧的子串。 解題思路

此題參考南郭子綦的思路。用一個棧來儲存左括弧的索引,遇到正確匹配的括弧則彈出匹配的索引,所以棧中儲存的是未匹配上的左括弧。新匹配上的括弧位置到前一段未匹配到的括弧的索引差極為有效括弧的大小。 代碼

class Solution(object):    def longestValidParentheses(self, s):        """        :type s: str        :rtype: int        """        stack = []        maxLen = 0        last = -1        for i in range(len(s)):            if s[i] == '(':                stack.append(i)            else:                if not stack:                    last = i                else:                    stack.pop()                    if not stack:                        maxLen = max(maxLen,i - last)                    else:                        maxLen = max(maxLen,i - stack[-1])        return maxLen

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.