Longest Substring Without Repeating Characters

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.

Code_Ganker(http://blog.csdn.net/linhuanmars/article/details/19949159)的实现思想。
引用下Code_Ganker的表述:“Brute Force的时间复杂度是O(n^3), 对每个substring都看看是不是有重复的字符,找出其中最长的,复杂度非常高。优化一些的思路是稍微动态规划一下,每次定一个起点,然后从起点走到有重复字符位置,过程用一个HashSet维护当前字符集,认为是constant操作,这样算法要进行两层循环,复杂度是O(n^2)。
线性算法的基本思路是维护一个窗口,每次关注窗口中的字符串,在每次判断中,左窗口和右窗口选择其一向前移动。同样是维护一个HashSet, 正常情况下移动右窗口,如果没有出现重复则继续移动右窗口,如果发现重复字符,则说明当前窗口中的串已经不满足要求,继续移动右窗口不可能得到更好的结果,此时移动左窗口,直到不再有重复字符为止,中间跳过的这些串中不会有更好的结果,因为他们不是重复就是更短。因为左窗口和右窗口都只向前,所以两个窗口都对每个元素访问不超过一遍,因此时间复杂度为O(2*n)=O(n),是线性算法。空间复杂度为HashSet的size,也是O(n)。”

算法代码实现如下。

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        if(s.empty() || s.size() == 1){
            return s.size();
        }

        int left = 0;
        int right = 1;
        int maxlen = 1;

        unordered_set<char> charset;
        charset.insert(s[left]);
        while(right < s.length()){
            unordered_set<char>::iterator it = charset.find(s[right]);
            if(it == charset.end()){
                charset.insert(s[right]);
                if(right - left + 1 > maxlen){
                    maxlen = right - left + 1;
                }
                right++;
            }else{
                while((left < right) && (charset.find(s[right]) != charset.end())){
                    charset.erase(s[left]);
                    left++;
                }
                if(left == right){
                    charset.insert(s[left]);
                    right = left + 1;
                }
            }
        }
        return maxlen;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值