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