https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.
题意:找一个字符串中,最长不出现重复字符串的长度。
分析:看完只想到暴力方法,依次遍历str[i],然后判断(i-1)到 0中str[i]是否出现过,记录其中的最大长度。
参照别人的代码,hash的方法,O(1)时间判断一个字符是否出现过。ASIIC码最多256个,定义数组table[256]记录字符在串str中最新依次出现的位置(即下标i)。
用start记录无重复串的起始位置的前一个,如果当前字母没出现过(table[str[i]]==-1),包含当前字符的最长不重复串len=i-start;
如果当前字母出现过,修改start为当前字母上次出现的位置,并将旧start到新start之间的字母出现位置初始化置为-1。例如:wrbmqbar ,start开始为-1,2,必须把table[w],table[r]初始化为-1。因为如果不这么做,当扫描到最后一个r时,第二个位置上的r会扰乱start的值。
代码:
class Solution {
public:
int lengthOfLongestSubstring(string s) {
if(s.length()<1) return 0;
int table[256];
for(int i=0;i<256;i++){
table[i]=-1;
}
int start=-1;
int len=0,maxlen=0;
for(int i=0;i<s.length();i++){
if(table[s[i]]==-1){
table[s[i]]=i;
//len=i-start;
}else{
start++;//从-1开始的
while(start<table[s[i]]){
table[s[start]]=-1;//把旧新start之间的字母都初始化未出现过 ,wrbmqbar
start++;
}
//start=table[s[i]];
table[s[i]]=i;
//len=i-start;
}
len=i-start;
if(len>maxlen) maxlen=len;
}
return maxlen;
}
};