Longest Substring Without Repeating Characters
Thoughts
Code
/*
* @lc app=leetcode id=3 lang=cpp
*
* [3] Longest Substring Without Repeating Characters
*
* https://leetcode.com/problems/longest-substring-without-repeating-characters/description/
*
* algorithms
* Medium (28.77%)
* Likes: 6248
* Dislikes: 355
* Total Accepted: 1.1M
* Total Submissions: 3.7M
* Testcase Example: '"abcabcbb"'
*
* Given a string, find the length of the longest substring without repeating
* characters.
*
*
* Example 1:
*
*
* Input: "abcabcbb"
* Output: 3
* Explanation: The answer is "abc", with the length of 3.
*
*
*
* Example 2:
*
*
* Input: "bbbbb"
* Output: 1
* Explanation: The answer is "b", with the length of 1.
*
*
*
* Example 3:
*
*
* Input: "pwwkew"
* Output: 3
* Explanation: The answer is "wke", with the length of 3.
* Note that the answer must be a substring, "pwke" is a
* subsequence and not a substring.
*
*
*
*
*
*/
class Solution {
public:
int lengthOfLongestSubstring(string s) {
int l = 0, r = 0, res = 0;
unordered_map<char, int> count;
while (r < s.size()) {
if (!count.count(s[r])) count[s[r]] = 0;
++count[s[r]];
while (count[s[r]] > 1) {
--count[s[l]];
++l;
}
res = max(res, r - l + 1);
++r;
}
return res;
}
};
Analysis
Ver.2
Last updated