3. Longest Substring Without Repeating Characters

屏幕快照 2022-04-10 下午2.19.02.png

https://leetcode.com/problems/longest-substring-without-repeating-characters/

思路:存下每個(gè)char出現(xiàn)的次數(shù)
時(shí)間復(fù)雜度O(2n)
空間復(fù)雜度O(min(m,n))
ps:m是char的size

class Solution(object):
    def lengthOfLongestSubstring(self, s):
        """
        :type s: str
        :rtype: int
        """
        left = right = result = 0
        map = {}
        while (right < len(s)):
            map[s[right]] = 1 if s[right] not in map else map[s[right]] + 1
            while map[s[right]] > 1:
                map[s[left]] = map[s[left]] - 1
                left += 1
            result = max(result, right-left+1)
            right += 1
        return result

思路:存下每個(gè)char出現(xiàn)的index
時(shí)間復(fù)雜度O(n)
空間復(fù)雜度O(min(m,n))

class Solution(object):
    def lengthOfLongestSubstring(self, s):
        """
        :type s: str
        :rtype: int
        """
        left = right = result = 0
        map = {}
        while (right < len(s)):
            if s[right] in map and map[s[right]] >= left:
                left = map[s[right]] + 1
            map[s[right]] = right
            result = max(result, right-left+1)
            right += 1
        return result
import java.util.HashMap;
class Solution {
    public int lengthOfLongestSubstring(String s) {
        HashMap<Character, Integer> map = new HashMap<>();
        int result = 0;
        for (int right=0, left=0; right<s.length(); right++){
            if (map.containsKey(s.charAt(right))){
                left = Math.max(left, map.get(s.charAt(right)) + 1);
            }
            result = Math.max(result, right-left+1);
            map.put(s.charAt(right), right);
        }
        return result;
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容