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

LeetCode 3 Longest Substring Without Repeating Characters

时间:2019-05-29 09:12:05      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:ges   http   problem   with   max   题目   rac   ble   bst   

题目

c++

class Solution {
public:
    map<char,int> m;
    int a[100005];
    int lengthOfLongestSubstring(string s) {
        
        int len = s.length();
        if(len==0)
            return 0;
        a[0]=1;
        m[s[0]]=1;
        int mm=1;
        for(int i=1;i<len;i++)
        {
            if(m[s[i]]==0)
            {
                a[i]=a[i-1]+1;
                mm = max(mm,a[i]);
                m[s[i]]=i+1;
            }
            else
            {
                if(m[s[i]]-1>=i-a[i-1])
                {
                    a[i]=i-m[s[i]]+1;
                   
                }
                else
                    a[i]=a[i-1]+1;
                 mm = max(mm,a[i]);
                 m[s[i]]=i+1;
            }
           
            
        }
        return mm;
    }
};

LeetCode 3 Longest Substring Without Repeating Characters

标签:ges   http   problem   with   max   题目   rac   ble   bst   

原文地址:https://www.cnblogs.com/dacc123/p/10941718.html

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