码迷,mamicode.com
首页 > 其他好文 > 详细

3. 无重复字符的最长子串

时间:2020-05-31 15:45:25      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:nbsp   最长子串   code   ges   length   int   return   char   word   

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. 无重复字符的最长子串

标签:nbsp   最长子串   code   ges   length   int   return   char   word   

原文地址:https://www.cnblogs.com/cattree/p/13019149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!