其他分享
首页 > 其他分享> > 无重复最长字串

无重复最长字串

作者:互联网

滑动窗口

public:
    int lengthOfLongestSubstring(string s) {
int left=0,right=0,max=1;
int len=s.size();
//int len=std::strlen(s);报错,只接受char*。可以使用s.c_str
//https://blog.csdn.net/aosquu800248/article/details/101913037
if(len==0)return 0;
while(s[right+1]!='\0')
{
    right++;
    for (int i=left;i<right;i++)
    {
        if(s[i]==s[right])
        {
            //left++;"pwwkew"报错
            left+=i-left+1;
            break;
        }    
    }
    max=std::max(max,right-left+1);
}
    return max;
    }
};```

标签:right,重复,len,char,int,报错,字串,最长,left
来源: https://www.cnblogs.com/fengmao31/p/15902477.html