[Leetcode] 3.无重复字符的最长子串

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;因为我们要让其指向下一个位置!!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值