3.longest substring without repeating
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.
最长不重复子串
Brute Force
有一个判断当前字符串为不重复的函数 boolean allUnique(String substring)
.
然后两重循环求解,时间复杂度O(n3)
sliding window
在暴力搜索中, boolean allUnique(String substring)
对于字串是从头开始搜索的。如果使用set
的结构,可以将复杂度降到O(n2)
Sliding Window Optimized
暴力搜索会产生很多不必要的操作,比如si,j代表字符串 i 到 j−1 没有重复字串。则我们只需要判断第 j 个是否含于 si,j 即可。如果不包含,则 si,j 变为 si,j+1 。如果包含,则从包含的下标的下一位置开始(记录对应的位置)。
如下图所示:

下一坐标起始点即为2
这样就把时间复杂度降到了O(n)
1 | def lengthOfLongestSubstring(self, s): |
本文标题:3.longest substring without repeating
文章作者:王二
发布时间:2018-07-29
最后更新:2024-11-06
原始链接:https://wanger-sjtu.github.io/%E6%9C%80%E9%95%BF%E4%B8%8D%E9%87%8D%E5%A4%8D%E5%AD%90%E4%B8%B2/
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!