码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode 3. Longest Substring Without Repeating Characters (Python版)

时间:2016-01-23 18:46:08      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:leetcode   python   

题目:

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.

大意是找出最长无重复子串


算法思路:

  这道题应该可以用动态规划做,我用的是double point的方法

  一个指针start指向子串头部,另一个指针end指向子串尾部

  每次递增end,判断end所指字符是否在当前子串中出现过

    • 如果出现过,则将start指针向后移动一位

    • 否则,将end指针向后移动,并更新最长子串长度                           

  最后返回子串最大长度即可


  该算法可以在start指针移动时进行优化,但是我优化后发现结果也没啥变化,就贴原来的代码吧


代码:

class Solution(object):
    def lengthOfLongestSubstring(self, s):
        """
        :type s: str
        :rtype: int
        """
        sLen = len(s)
        if sLen == 0 or sLen == 1:
            return sLen

        letters = list(s)

        hashSet = {}
        hashSet[letters[0]] = 1

        start = 0
        end = 1

        maxLen = 1

        while end != sLen:
            letter = letters[end]

            if hashSet.has_key(letter) and hashSet[letter] > 0:
                hashSet[letters[start]] -= 1
                start += 1
                continue

            hashSet[letter] = 1
            end += 1
            if end - start > maxLen:
                maxLen = end - start

        return maxLen


本文出自 “温温” 博客,请务必保留此出处http://wdswds.blog.51cto.com/11139828/1737802

leetcode 3. Longest Substring Without Repeating Characters (Python版)

标签:leetcode   python   

原文地址:http://wdswds.blog.51cto.com/11139828/1737802

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!