当前位置:   article > 正文

LeetCode-3.无重复最长字串

LeetCode-3.无重复最长字串

问题描述:

给定一个字符串 s ,请你找出其中不含有重复字符的 最长子串 的长度。

示例 1:

输入: s = "abcabcbb"
输出: 3 
解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。
示例 2:

输入: s = "bbbbb"
输出: 1
解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。
示例 3:

输入: s = "pwwkew"
输出: 3
解释: 因为无重复字符的最长子串是 "wke",所以其长度为 3。
     请注意,你的答案必须是 子串 的长度,"pwke" 是一个子序列,不是子串。
示例 4:

输入: s = ""
输出: 0

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

如果暴力不是为了杀戮:

  1. class Solution:
  2. def lengthOfLongestSubstring(self, s: str) -> int:
  3. # 试了半天,最后想出来一个删除法,即将前面出现的那个字符删掉
  4. s = list(s)
  5. index = 0
  6. exist = []
  7. max_size = 0
  8. cur_size = 0
  9. while len(s) != 0:
  10. si = s[index]
  11. if si not in exist:
  12. exist.append(si)
  13. else:
  14. cur_size = len(exist)
  15. if max_size < cur_size:
  16. max_size = cur_size
  17. exist.clear()
  18. repeat_index = s.index(si)
  19. s = s[repeat_index + 1:]
  20. index = 0
  21. continue
  22. if index+1 < len(s):
  23. index += 1
  24. return max_size

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/529291
推荐阅读
相关标签
  

闽ICP备14008679号