leetcode 32 最長有效括號

2022-07-24 06:33:11 字數 413 閱讀 5430

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

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

遇到左右括號問題,考慮使用動態規劃或者棧來解決

用貪心思路來解決:每遇到乙個( 則記錄, 每遇到 )則減去乙個(,有效數目加2;無(時清零;

錯誤樣例:"()(()"

輸出:4

預期:2

原因:當中間有多餘的(時,無法判斷;

解決方法:用棧來記錄括號的索引,每次匹配時彈出

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...