leetCode 003:滑動窗口

# -*-coding:utf-8
"""
給定一個字符串,請你找出其中不含有重複字符的 最長子串 的長度。

示例 1:

輸入: "abcabcbb"
輸出: 3
解釋: 因爲無重複字符的最長子串是 "abc",所以其長度爲 3。
示例 2:

輸入: "bbbbb"
輸出: 1
解釋: 因爲無重複字符的最長子串是 "b",所以其長度爲 1。
示例 3:

輸入: "pwwkew"
輸出: 3
解釋: 因爲無重複字符的最長子串是 "wke",所以其長度爲 3。
     請注意,你的答案必須是 子串 的長度,"pwke" 是一個子序列,不是子串。

來源:力扣(LeetCode)
鏈接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters
著作權歸領釦網絡所有。商業轉載請聯繫官方授權,非商業轉載請註明出處。
"""


class Solution(object):
    def lengthOfLongestSubstring(self, s):
        """
        :type s: str
        :rtype: int
        """
        i = 0
        j = 0
        w_length = 0
        max_length = 0
        char_set = {}
        """
        滑動窗口
        """
        while (i <= j and j < len(s)):
            if (s[j] in char_set):
                i = char_set[s[j]] + 1
                for key in char_set.keys():
                    if(char_set[key]<i):
                        char_set.pop(key)
                char_set[s[j]] = j
                j+=1
                w_length =j-i
            else:
                char_set[s[j]] = j
                j += 1
                w_length = j - i
                if w_length > max_length:
                    max_length = w_length
        print max_length
        return max_length


if __name__ == "__main__":
    solution = Solution()
    s = "tmmzuxt"
    solution.lengthOfLongestSubstring(s)

參考:

https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/solution/hua-dong-chuang-kou-by-powcai/

https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/solution/hua-dong-chuang-kou-tu-wen-jiang-jie-by-superychen/

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章