【LeetCode】3. Longest Substring Without Repeating Characters (2 solutions)

本文介绍了一种寻找字符串中最长无重复字符子串的高效算法。通过双指针技术,利用哈希表或数组记录字符位置,实现O(n)时间复杂度内解决问题。适用于编程面试和技术挑战。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Longest Substring Without Repeating Characters

Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.

 

双指针begin,end.扩展end,收缩begin.

[begin,end]之间为无重复字母的子串。

 可与Longest Substring with At Most Two Distinct Characters对照看。

 

解法一:

使用unordered_map记录每个字母最近出现下标。

[begin, end]表示无重复字符的窗口。

在end指向一个窗口中的字符时,需要将begin收缩到该字符之后,以免与end重复。

时间复杂度:O(n)

空间复杂度:O(n)

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        if(s == "")
            return 0;
            
        unordered_map<char, int> m; //char-index map
        int ret = 1;
        int begin = 0;
        m[s[begin]] = 0;
        int end = 1;
        while(end < s.size())
        {
            //extend
            if(m.find(s[end]) == m.end() || m[s[end]] < begin)
            {
                ;
            }
            //shrink
            else
            {
                begin = m[s[end]]+1;
            }
            ret = max(end-begin+1, ret);
            m[s[end]] = end;
            end ++;
        }
        return ret;
    }
};

 

解法二:

使用record[128]记录A~Z,a~z在窗口中的出现次数。

由于无重复的要求,因此在end指向一个已经出现过的字母(即record[s[end]]不为零)

需要收缩begin直到begin遇到end或者record[s[end]]为零。

class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        int longest = 0;
        int begin = 0;
        int end = 0;
        int record[128] = {0};  //initial to all 0
        while(end < s.size())
        {
            while(record[s[end]]>0 && begin<end)
            {
                record[s[begin]] --;
                begin ++;
            }
            //record[s[end]]==0 || begin==end
            record[s[end]] ++;
            longest = max(longest, end-begin+1);
            end ++;
        }
        return longest;
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值