题目
给定一个字符串 s ,请你找出其中不含有重复字符的 最长
子串
的长度。
示例 1:
输入: s = “abcabcbb”
输出: 3
解释: 因为无重复字符的最长子串是 “abc”,所以其长度为 3。
解
class Solution {public int lengthOfLongestSubstring(String s) {int n = s.length();Map<Character, Integer> map = new HashMap<>();int j = 0;int max = 0;for (int i = 0; i < n; i++) {if (map.get(s.charAt(i)) == null) {map.put(s.charAt(i), 1);max = Math.max(max, i - j + 1);} else {map.remove(s.charAt(j++));i--;}}return max;}
}