3. 无重复字符的最长子串
给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。
示例 1:
输入: s = "abcabcbb"
输出: 3
解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。
示例 2:
输入: s = "bbbbb"
输出: 1
解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。
来源:力扣(LeetCode)
class Solution { public int lengthOfLongestSubstring(String s) { int max = 0; int j = 0; Set<Character> a = new HashSet(); for(int i = 0 ; i<s.length();i++){ while(j<s.length()&&!a.contains(s.charAt(j))){ a.add(s.charAt(j++)); } if(a.size()>max) max = a.size(); a.remove(s.charAt(i)); } return max; } }
马拉车算法的确有点难,自己能写出来的只有滑动窗口。
PS:马拉车算法后续再学习理解一下,死记硬背还是不可取的。