[LeetCode]3. Longest Substring Without Repeating Characters
3. Longest Substring Without Repeating Characters
Given a string, find the length of thelongest substringwithout repeating characters.
Examples:
Given"abcabcbb"
, the answer is"abc"
, which the length is 3.
Given"bbbbb"
, the answer is"b"
, with the length of 1.
Given"pwwkew"
, the answer is"wke"
, with the length of 3. Note that the answer must be asubstring,"pwke"
is asubsequenceand not a substring.
题意:
给定一个字符串,找出最长的无重复的连续字串。就比如"pwwkew"的最长无重复连续字串是"wke"。
最易想到的方法就是字符串逐一开始查找,第一个字符串找到最长的字串,依次找出,取最大值即可。
由于有256个字符,故定义了个257长度的数组,足以存下所有字符。
思路
1)定义字符数组,并把256个的值都置为零。
2)逐个查找字符,如果未出现过,即把该下标对应的数组值置为一。若该下标值已经是一了,则返回,
3)重置全部数组元素元素为零,从下个下标开始继续查找不重复字串。
4)返回最大字串长度即可。
#defineCHARACTERS257intlengthOfLongestSubstring(char*s){if(!s){return0;}intcharacter[CHARACTERS]={0};intlen=strlen(s);intcnt=0;intsize=0;intmaxLen=0;intindex=0;for(index=0;index<len;index++){size=0;for(cnt=0;cnt<CHARACTERS;cnt++){character[cnt]=0;}for(cnt=index;cnt<len;cnt++){/*pwwkew*/intvalue=*(s+cnt);if(character[value]==0){size+=1;character[value]=1;}else{break;}}if(size>maxLen){maxLen=size;}}returnmaxLen;}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。