无重复字符的最长子串
问题描述:给定一个字符串 s ,请你找出其中不含有重复字符的 最长子串 的长度
代码如下(示例):
public static int lengthOfLongestSubstring(String s) {
//键位字符,值为位置
HashMap<Character,Integer> map = new HashMap<Character, Integer>();
int start = 0;
int end = 0;
int maxlength = 0;
for(; end < s.length(); end++){
if(map.containsKey(s.charAt(end))){
//判断重复字符是否已经被删除
//对应位置下标比start小则该字符因其他重复字符已被删除,start不更新
start = Math.max(map.get(s.charAt(end)), start);
}
maxlength = Math.max(end - start + 1, maxlength);
//存放对应字符及下一位字符位置
map.put(s.charAt(end), end+1);
}
return maxlength;
}