问题描述

Given a string, find the length of the longest substring without 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 a substring, "pwke" is a subsequence and not a substring.

问题分析

查找最长的不含重复字符的子串。

先来想一下我们自己是怎么查找子串的,比如子串:abcabcbb,首先我们把眼睛放在第一个字母a上,然后往后面看,b可以加入子串,c可以加入子串,又一个a出来了,好,这个子串就到此为止了。现在子串已经有三个字母了,并且不能往后加了,然后我们又是怎么继续的呢?会循环重新来吗?当然不会,我们的目光会一下就移到了bca子串上,把第一个a“删掉”后,这又是一个符合条件的子串,然后继续往下走……

所以代码可以按照这个思路写,维护两个指针,左指针和右指针,两个指针之间就是我们需要的子串,右指针前移,碰到重复字母,说明这个子串到头了,此时左指针前移直到重复字符不在子串内,然后右指针再前移,直到字符串遍历结束。

代码

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
    	// 子字符串集合 
        set<char> sub;
        int left = 0,right = 0, max = 0;
        while(right<s.length()) {
        	// 如果集合中不存在此字符,将字符加入集合 
        	if(sub.find(s[right]) == sub.end()) {
	        	sub.insert(s[right]); 
	        	// 右指针前移
				right++; 
	        } else {
        		// 此时子字符串已达最大值 
				if(sub.size() > max) {
					max = sub.size();
				}
				// 集合中已有此字符, 删除集合中的重复元素 
				sub.erase(s[left]); 
				// 左指针右移
				left++; 
        	}
        }
        return max>sub.size()?max:sub.size();
    }
};