Leetcode 32 最長有效括號

2022-05-20 23:42:56 字數 1406 閱讀 7214

@author: zzq

@software: pycharm

@file: leetcode32_最長有效括號.py

@time: 2018/11/22 19:19

要求:給定乙個只包含 '(' 和 ')' 的字串,找出最長的包含有效括號的子串的長度。

示例 1:

輸入: "(()"

輸出: 2

解釋: 最長有效括號子串為 "()"

示例 2:
輸入: ")()())"

輸出: 4

解釋: 最長有效括號子串為 "()()"

思路:
1)max_len 用於記錄當前匹配最長的括號長度。

2)s_dict用來儲存遇到的左括號的下標。

3)start儲存有效的起始下標。

4)遇到左括號,下標入棧

5)遇到右括號,a.如果此時s_dict為空,則更新start的值

b. 否則,s_dict棧頂元出棧,此時,

b.1.如果是棧為空,記錄當前匹配到的子串長度【i到start之間的距離,包含start】i-start+1,更新max_len的值;

b.2.如果棧非空,後面可能還會繼續匹配,先記錄當前匹配到的子串長度【i到棧頂元素下標之間的距離】i-s_dict[-1],更新max_len的值。

ac**如下:

class solution():

def __init__(self):

pass

def longestvalidparentheses(self, s):

""":type s: str

:rtype: int

"""s_len = len(s)

max_len = 0

s_dict =

i = 0

start = 0

while i < s_len:

if s[i] == '(':

else:

if len(s_dict) == 0:

i += 1

start = i

continue

else:

s_dict.pop()

if len(s_dict) == 0:

max_len = max(max_len, i-start+1)

else:

max_len = max(max_len, i-s_dict[-1])

i += 1

return max_len

if __name__ == "__main__":

answer = solution()

print(answer.longestvalidparentheses("(())((()"))

LeetCode 32 最長有效括號

思路 自己沒想出來,參考了一下網上大神的提示。使用乙個int棧,將左括號記為 1,右括號記為 2 遍歷字串。1.若為 則直接壓入棧 2.若為 分情況討論 若棧頂為 2 或棧空,則直接將 2壓入棧 若棧容量為1,且棧頂為 1,將 1推出棧,推入2,代表此時有一對匹配括號 若棧容量為1,且棧頂大於0,說...

leetcode 32 最長有效括號

一 先對字串進行遍歷 首先從前往後排除不配對的 首次遍歷後的字串被分成若干個字串 再對這些字串 從後往前排除不配對的 int longestvalidparentheses std string s else if s j else t1 j 1 n 0 continue if max2 n max...

LeetCode32 最長有效括號

題目鏈結 500 800ms class solution else if s j for int i 0 ilength i if s i 0 result 0 if result k return result else return k 這絕不是最優解 幾十毫秒之內解決問題 class sol...