【LeetCode】【算法】3. 无重复字符的最长子串

LeetCode 3. 无重复字符的最长子串

题目描述

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

思路

思路:滑动窗口+哈希表

  1. 定义两个指针i,j,快指针j先走,将遍历到的字符都加入到哈希表map中,并通过Math.max()来找到res, j-i中的最大值(最长重复子串)
  2. 若遇到某个字符,在map中已经出现过(重复了),则慢指针i直接走到j的位置

代码

java 复制代码
class Solution {
    public int lengthOfLongestSubstring(String s) {
        // 滑动窗口加哈希表
        Map<Character, Integer> map = new HashMap<>();
        int i = -1, res = 0, len = s.length();
        for (int j = 0; j < len; j++) {
            if (map.containsKey(s.charAt(j))) i = Math.max(i, map.get(s.charAt(j))); // 更新左指针
            map.put(s.charAt(j), j); // 哈希表记录
            res = Math.max(res, j - i); // 在遍历的过程中不断更新字符串长度
        }
        return res;
    }
}
相关推荐
SoraLuna13 分钟前
「Mac玩转仓颉内测版7」入门篇7 - Cangjie控制结构(下)
算法·macos·动态规划·cangjie
我狠狠地刷刷刷刷刷17 分钟前
中文分词模拟器
开发语言·python·算法
鸽鸽程序猿17 分钟前
【算法】【优选算法】前缀和(上)
java·算法·前缀和
九圣残炎23 分钟前
【从零开始的LeetCode-算法】2559. 统计范围内的元音字符串数
java·算法·leetcode
YSRM35 分钟前
Experimental Analysis of Dedicated GPU in Virtual Framework using vGPU 论文分析
算法·gpu算力·vgpu·pci直通
韭菜盖饭1 小时前
LeetCode每日一题3261---统计满足 K 约束的子字符串数量 II
数据结构·算法·leetcode
xxxmmc1 小时前
Leetcode 75 Sort colors
leetcode·三指针移动问题
geng小球1 小时前
LeetCode 78-子集Ⅱ
java·算法·leetcode
拒绝头秃从我做起1 小时前
9.回文数-力扣(LeetCode)
leetcode
AnFany1 小时前
LeetCode【0028】找出字符串中第一个匹配项的下标
python·算法·leetcode·字符串·kmp·字符串匹配