剑指offer字符串48. 最长不含重复字符的子字符串
Posted trevo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer字符串48. 最长不含重复字符的子字符串相关的知识,希望对你有一定的参考价值。
class Solution {
public:
int lengthOfLongestSubstring(string s) {
unordered_map<char, int> hash;
int res = 0;
for(int i = 0, j = 0; j < s.size(); j++)
{
if(++hash[s[j]] > 1)
{
while(i < j)
{
hash[s[i]]--;
i++;
if(hash[s[j]] == 1) break;
}
}
res = max(res, j- i + 1);
}
return res;
}
};
以上是关于剑指offer字符串48. 最长不含重复字符的子字符串的主要内容,如果未能解决你的问题,请参考以下文章