LeetCode 3.Longest Substring Without Repeating Characters 无重复字符的最长子串

题目描述

给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。

示例 1:

输入: “abcabcbb”
输出: 3
解释: 因为无重复字符的最长子串是 “abc”,所以其长度为 3。
示例 2:

输入: “bbbbb”
输出: 1
解释: 因为无重复字符的最长子串是 “b”,所以其长度为 1。
示例 3:

输入: “pwwkew”
输出: 3
解释: 因为无重复字符的最长子串是 “wke”,所以其长度为 3。
请注意,你的答案必须是 子串 的长度,“pwke” 是一个子序列,不是子串。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters

思路

在滑动窗口的基础之上利用了数组(桶)的知识。
LeetCode 3.Longest Substring Without Repeating Characters 无重复字符的最长子串_第1张图片

c++
// int [26] 用于字母 ‘a’ - ‘z’ 或 ‘A’ - ‘Z’
// int [128] 用于ASCII码
// int [256] 用于扩展ASCII码
class Solution {
public:
    int lengthOfLongestSubstring(string s) {
        const int MAX_SASCII = 256;
        int last[MAX_SASCII];
        int start = 0;
        fill(last, last + MAX_SASCII, -1);
        int max_len = 0;
        for(int i = 0; i < s.size(); ++i){
            if(last[s[i]] >= start){
                max_len = max(max_len, i - start);
                start = last[s[i]] + 1;
            }
            last[s[i]] = i;
        }
        return max(max_len, int(s.size()) - start);
    }
};

你可能感兴趣的:(基础算法,c++,leetcode,字符串,算法,c++)