摘要:第一反應是用棧,然后將左括號入棧,右括號出棧,遍歷結束后看看是不是棧空了。但是由于頻繁的函數調用,導致時間效率不如第一個。但是第一個的方法更容易出錯。
Given a string containing just the characters "(", ")", "{", "}", "[" and "]", determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.
第一反應是用棧,然后將左括號入棧,右括號出棧,遍歷結束后看看是不是棧空了。
問題仍舊是各種邊界條件..
public class Solution { public boolean isValid(String s) { Stackstack = new Stack (); stack.push(s.charAt(0)); for(int i=1;i 優化:
這些判斷就是一個匹配功能,可以把兩個字符是不是匹配多帶帶提出來,再利用棧匹配就行,匹配就出棧,最后棧不為空就是整個字串無法匹配
所以一個更加減少錯誤的方法就是把這些類似的功能用一個函數操作處理。
但是由于頻繁的函數調用,導致時間效率不如第一個。但是第一個的方法更容易出錯。public boolean isValid2(String s) { Stackstack = new Stack (); stack.push(s.charAt(0)); for(int i=1;i
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/64333.html
摘要:給定一個只包括,,,,,的字符串,判斷字符串是否有效。有效字符串需滿足左括號必須用相同類型的右括號閉合。注意空字符串可被認為是有效字符串。 給定一個只包括 (,),{,},[,] 的字符串,判斷字符串是否有效。 Given a string containing just the characters (, ), {, }, [ and ], determine if the inpu...
摘要:判定是否有效的一句就是,字符必須嚴格有序。例如和是有效的,但是和就是無效的。對于前一半字符,我們對它們進行入棧操作。如果不匹配,即整個字符串無效。當整個字符串的遍歷結束的時候,判斷棧是否為空完全匹配。 題目詳情 Given a string containing just the characters (, ), {, }, [ and ], determine if the inpu...
摘要:在問題中,我們可以用來檢驗括號對,也可以通過來檢驗。遇到就加一,遇到就減一。找到一對括號就在最終結果上加。我們用來表示當前位置的最長括號。括號之間的關系有兩種,包含和相離。 Longest Valid Parentheses Given a string containing just the characters ( and ), find the length of the lon...
摘要:假設是從下標開始到字符串結尾最長括號對長度,是字符串下標為的括號。如果所有符號都是,說明是有效的。 Longest Valid Parentheses Given a string containing just the characters ( and ), find the length of the longest valid (well-formed) parentheses...
Problem Given a string containing just the characters ( and ), find the length of the longest valid (well-formed) parentheses substring. Example 1: Input: (()Output: 2Explanation: The longest valid pa...
閱讀 2574·2021-11-18 10:02
閱讀 1714·2021-09-30 10:00
閱讀 5310·2021-09-22 15:27
閱讀 1204·2019-08-30 15:54
閱讀 3671·2019-08-29 11:13
閱讀 2945·2019-08-29 11:05
閱讀 3319·2019-08-29 11:01
閱讀 569·2019-08-26 13:52