3 Longest Substring Without Repeating Characters
1. Question
2. Implementation
class Solution {
public int lengthOfLongestSubstring(String s) {
if (s == null || s.length() == 0) {
return 0;
}
int maxLen = 0;
int start = 0, end = 0;
int count = 0;
int[] map = new int[256];
while (end < s.length()) {
if (map[s.charAt(end)] > 0) {
++count;
}
++map[s.charAt(end)];
++end;
while (count > 0) {
if (map[s.charAt(start)] > 1) {
--count;
}
--map[s.charAt(start)];
++start;
}
maxLen = Math.max(maxLen, end - start);
}
return maxLen;
}
}3. Time & Space Complexity
Last updated