LeetCode https://leetcode.cn/problems/longest-substring-without-repeating-characters/
题目描述
给定一个字符串 s ,请你找出其中不含有重复字符的 最长子串 的长度。
思路
利用滑动窗口求解
遍历字符串, 当字符在滑动窗口中(出现重复), 更新窗口, 将最左边的元素移除, 直到满足要求
代码
1 | class Solution { |
LeetCode https://leetcode.cn/problems/longest-substring-without-repeating-characters/
给定一个字符串 s ,请你找出其中不含有重复字符的 最长子串 的长度。
利用滑动窗口求解
遍历字符串, 当字符在滑动窗口中(出现重复), 更新窗口, 将最左边的元素移除, 直到满足要求
1 | class Solution { |