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

无重复字符的最长子串

时间:2018-10-03 00:35:21      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:src   最长子串   img   info   sts   long   ring   ret   string   

技术分享图片

代码:

int lengthOfLongestSubstring(char* s) {
int i, j, l = 0, Length = strlen(s), max = 1; /*l指向每一轮比较的起点,max是不重复的最长字符数*/

if (Length == 0)
return 0;
for (i = 1; i < Length; i++)
{
for (j = l; j < i; j++)
if (s[j] == s[i])
{
l = j+1; /*如果两个字符相同,那么就让起点增加1,切忌写成l=i*/
break;
}
max = (max > i - l + 1) ? max : i - l + 1; /*r-l+1可以算出每一轮所比较的字符的个数*/
}
return max;
}

 

无重复字符的最长子串

标签:src   最长子串   img   info   sts   long   ring   ret   string   

原文地址:https://www.cnblogs.com/yangyalong/p/9738675.html

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