【LeetCode】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.

问题分析

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

先来想一下我们自己是怎么查找子串的,比如子串: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();
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值