3. Longest Substring Without Repeating Characters
Source: https://leetcode.com/problems/longest-substring-without-repeating-characters/description/
Intuition
Using hash set to track each character in the string. And set two pointers low
and high
to
traverse the hold string.
- When the hashset contains the same character with that at high pointer, keep moving
low
pointer right until the set has no duplicate characters - If current hashset do not has charachter at
high
pointer, add current character and move thehigh
pointer right
During the traverse process, use max
to store the maximum length of substring.
Approach (Optimal)
Note that s
consists of English letters, digits, symbols and spaces, we initialize an array of size 128 to
store the least position of each character in s
.
If this is duplication in a character c
, we move the low
pointer to "next position" store in the array to reduce the unnecessary comparsion.
Complexity
- Time complexity: \(O(n)\)
- Space complexity: \(O(1)\)