5-101-(LeetCode- 3) 无重复字符的最长子串
Posted arctic_fox
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5-101-(LeetCode- 3) 无重复字符的最长子串相关的知识,希望对你有一定的参考价值。
1. 题目
2. 解法
3. 总结
LeetCode-003-无重复字符的最长子串
无重复字符的最长子串
题目描述:给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。
示例说明请见LeetCode官网。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/probl...
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
解法一:滑动窗口法
从第一个字符开始,有一个指针p记录不重复的第一个字符,然后依次向后遍历,把已经出现的字符放在List里,先判断是否出现过,如果出现过,则计算当前位置和p指针的位置之差,即当前不重复的子串的长度,和最长的count对比,如果大于count,则替换之,然后把p指针向右移动一位,继续向后遍历,知道最后一个字符,返回count值即为最长子串的长度。
import java.util.ArrayList;
import java.util.List;
public class Solution {
public static int lengthOfLongestSubstring(String s) {
if (s == null || s.length() == 0) {
return 0;
}
int count = 0;
int charAt = 0;
List<Character> charList = new ArrayList<Character>(s.length());
for (int i = 0; i < s.length(); i++) {
List<Character> subList = charList.subList(charAt, i);
if (subList.contains(s.charAt(i))) {
charAt = charList.lastIndexOf(s.charAt(i)) + 1;
}
if (i + 1 - charAt > count) {
count = i + 1 - charAt;
}
charList.add(s.charAt(i));
}
return count;
}
public static void main(String[] args) {
System.out.println(lengthOfLongestSubstring("abcabcbb"));
}
}
以上是关于5-101-(LeetCode- 3) 无重复字符的最长子串的主要内容,如果未能解决你的问题,请参考以下文章