VS2013下运行
#include <string>
#include <iostream>
#include <assert.h>
#include<algorithm>
using namespace std;
class Solution {
public:
int lengthOfLongestSubstring(string s) {
int m[256] = { 0 }, res = 0, left = 0;
for (int i = 0; i<s.size(); ++i){
if (m[s[i]] == 0 || m[s[i]]<left){
res = max(res, i - left + 1);
}
else
left = m[s[i]];
m[s[i]] = i + 1;
}
return res;
}
};
string stringToString(string input) {
assert(input.length() >= 2);
string result;
for (int i = 1; i < input.length() - 1; i++) {
char currentChar = input[i];
if (input[i] == '\\') {
char nextChar = input[i + 1];
switch (nextChar) {
case '\"': result.push_back('\"'); break;
case '/': result.push_back('/'); break;
case '\\': result.push_back('\\'); break;
case 'b': result.push_back('\b'); break;
case 'f': result.push_back('\f'); break;
case 'r': result.push_back('\r'); break;
case 'n': result.push_back('\n'); break;
case 't': result.push_back('\t'); break;
default: break;
}
i++;
}
else {
result.push_back(currentChar);
}
}
return result;
}
int main() {
string line;
while (getline(cin, line)) {
string s = stringToString(" abcabcbb ");
int ret = Solution().lengthOfLongestSubstring(s);
string out = to_string(ret);
cout << out << endl;
}
return 0;
}
该题我看了很多博文,最难理解的语句是:
else
left = m[s[i]];
m[s[i]] = i + 1;
这个语句什么意思呢?就是说,更新字符在hash表中的值,也就是说,下一次碰到“滑动窗口”中有和i指针所指的字符相等的时候,我们首先更新left;其次,我们更新hash表中该值为i+1。
大家想没想过为什么更新m[s[i]] 的值为i+1呢?
我们试想,我们把这个m[s[i]] 的值更新为i+1,能达到什么效果?那就是:下次我们可以直接把left定位到m[s[i]]所指的下一个位置了!!!我们要的不就是这个效果吗?
看下图:
正常来说,到这了,我们想做的是什么?是不是就是想把left移动到下一个位置?也就是把left指针移动到m[a]的值的位置。所以,m[s[i]]的值就是为了记录下一次出现这种有相同的情况,left应该指向的位置!!!
接着看下图:
所以我们也就理解了,为什么m[s[i]] = i + 1;因为我们要让其指向下一个位置!!!