摘要:用來記錄字母出現(xiàn)的可以快速查找出字母是否重復(fù)出現(xiàn),并定位到它出現(xiàn)的位置,方便做刪除之前字母的操作。然后把這個字母的更新。
題目:
Given a string, find the length of the longest substring without repeating characters.
Examples:
Given "abcabcbb", the answer is "abc", which the length is 3.
Given "bbbbb", the answer is "b", with the length of 1.
Given "pwwkew", the answer is "wke", with the length of 3. Note that the answer must be a substring, "pwke" is a subsequence and not a substring.
解法1:
核心思想是當(dāng)發(fā)現(xiàn)有重復(fù)的字母,就把重復(fù)字母第一次出現(xiàn)位置以及之前的字母都刪掉,這樣就保證剩下的string中沒有重復(fù)的字母了。用hashmap來記錄字母出現(xiàn)的index,可以快速查找出字母是否重復(fù)出現(xiàn),并定位到它出現(xiàn)的位置,方便做刪除之前字母的操作。
代碼1:
public void deletePrevious(Mapmap, String s, int start, int end) { for (int i = start; i <= end; i++) { char c = s.charAt(i); map.remove(c); } } public int lengthOfLongestSubstring(String s) { int result = 0; if (s.length() == 0) return result; Map map = new HashMap (); int start = 0; int len = 0; for (int i = 0; i < s.length(); i++) { char c = s.charAt(i); if (map.containsKey(c)) { int index = map.get(c); //把從重復(fù)的index開始,前面所有的數(shù)都在map里去掉,并記下新的start deletePrevious(map, s, start, index); start = index + 1; map.put(c, i); //刪掉后的len是當(dāng)前i減去刪掉數(shù)的index len = i - index; } else { map.put(c, i); len++; } result = Math.max(result, len); } return result; }
又看了其他人的解法,感覺有很好的思路就拷貝過來了。
解法2:
我用j, i來記錄最后不重復(fù)string的開始點和當(dāng)前點,當(dāng)我找到一個重復(fù)出現(xiàn)的字母,我判斷一下j是否要更新,如果這個重復(fù)字母出現(xiàn)第一次的位置比j小,那么說明至少從j開始才能保證沒有重復(fù)字母;如果這個重復(fù)字母出現(xiàn)第一次的位置比j大,那么將j更新到這個位置的后一位,作為新的開始點。然后把這個字母的index更新。這里省去了我上面說的刪除之前所以map中的值,因為就算出現(xiàn)了重復(fù)的值,我也還是從j開始算,并且我更新這個值的新index后,原來那個就相當(dāng)于自動刪除了。
代碼2:
public int lengthOfLongestSubstring(String s) { if (s.length()==0) return 0; HashMapmap = new HashMap (); int max=0; for (int i = 0, j = 0; i < s.length(); i++) { if (map.containsKey(s.charAt(i))) { //這里j是記錄滿足條件的start,當(dāng)發(fā)現(xiàn)有重復(fù)的數(shù)時,應(yīng)從重復(fù)數(shù)第一次出現(xiàn)的位置向后一位開始記,但同時要保持從j開始向后所有數(shù)都不重復(fù),就得取最大值 j = Math.max(j, map.get(s.charAt(i)) + 1); } //更新重復(fù)出現(xiàn)數(shù)的index值 map.put(s.charAt(i), i); max = Math.max(max, i - j + 1); } return max; }
解法3:
這里思路跟解法2一樣,只不過他巧妙利用cache,因為所以字母就127個,那個我用256的空間就肯定能記錄所有的點。比如就算最極端,cache(0)是‘a(chǎn)",一直到cache(255)才雙出現(xiàn)‘a(chǎn)’,我的空間也是夠的。
public int lengthOfLongestSubstring(String s) { int result = 0; int[] cache = new int[256]; for (int i = 0, j = 0; i < s.length(); i++) { j = (cache[s.charAt(i)] > 0) ? Math.max(j, cache[s.charAt(i)]) : j; //注意因為stirng的index是從0開始,但是我們判斷這個字母是否在cache里也用這個字母的cache值是否來判斷,所以我們把每個存進cache里的字母的index + 1, 這樣存的就是它的下一個數(shù)的index。 cache[s.charAt(i)] = i + 1; result = Math.max(result, i - j + 1); } return result; }
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/64862.html
摘要:哈希表是最自然的想法。在遍歷字符串時,我們先根據(jù)哈希表找出該字符上次出現(xiàn)的位置,如果大于等于子字符串首,便更新子字符串首。結(jié)束后,將該字符新的位置放入哈希表中。 Longest Substring Without Repeating Characters 最新更新解法:https://yanjia.me/zh/2018/12/... Given a string, find the ...
摘要:解題思路本題借助實現(xiàn)。如果字符未出現(xiàn)過,則字符,如果字符出現(xiàn)過,則維護上次出現(xiàn)的遍歷的起始點。注意點每次都要更新字符的位置最后返回時,一定要考慮到從到字符串末尾都沒有遇到重復(fù)字符的情況,所欲需要比較下和的大小。 Longest Substring Without Repeating CharactersGiven a string, find the length of the lon...
摘要:哈希表法雙指針法只有當(dāng)也就是時上面的循環(huán)才會結(jié)束,,跳過這個之前的重復(fù)字符再將置為 Problem Given a string, find the length of the longest substring without repeating characters. Example For example, the longest substring without repeat...
摘要:原問題我的沙雕解法無重復(fù)字母存在重復(fù)字母挨打最暴力的無腦解法,耗時。。。 原問題 Given a string, find the length of the?longest substring?without repeating characters. Example 1: Input: abcabcbb Output: 3 Explanation: The answer is a...
摘要:建立數(shù)組,存儲個字符最近一次出現(xiàn)的位置。首次出現(xiàn)某字符時,其位置標(biāo)記為,并用無重復(fù)字符計數(shù)器記錄無重復(fù)字符的長度,再在更新其最大值。循環(huán)完整個字符串后,返回最大值。 Problem Given a string, find the length of the longest substring without repeating characters. Examples: Given ...
閱讀 3046·2023-04-26 02:27
閱讀 2763·2021-11-22 13:54
閱讀 902·2021-11-12 10:36
閱讀 3753·2021-10-09 09:44
閱讀 3178·2021-10-09 09:41
閱讀 1223·2021-09-22 10:02
閱讀 2833·2019-08-30 15:56
閱讀 3104·2019-08-30 11:02