## 题目列表 - [3. 无重复字符的最长子串](https://github.com/ShannonChenCHN/algorithm-and-data-structure/issues/28#issuecomment-803278540)(难度中等)(注:本题同[剑指 Offer 48. 最长不含重复字符的子字符串](https://leetcode-cn.com/problems/zui-chang-bu-han-zhong-fu-zi-fu-de-zi-zi-fu-chuan-lcof/))⭐️ - [209. 长度最小的子数组](https://github.com/ShannonChenCHN/algorithm-and-data-structure/issues/28#issuecomment-803278572)(难度中等)⭐️ - [76. 最小覆盖子串](https://github.com/ShannonChenCHN/algorithm-and-data-structure/issues/28#issuecomment-803505489)(难度困难)⭐️ - [239. 滑动窗口最大值](https://github.com/ShannonChenCHN/algorithm-and-data-structure/issues/28#issuecomment-803505624) (难度困难)(注:本题同 [剑指 Offer 59 - I. 滑动窗口的最大值](https://leetcode-cn.com/problems/hua-dong-chuang-kou-de-zui-da-zhi-lcof/))⭐️ - [剑指 Offer 59 - II. 队列的最大值](https://leetcode-cn.com/problems/dui-lie-de-zui-da-zhi-lcof/)(难度中等) - [567. 字符串的排列](https://leetcode-cn.com/problems/permutation-in-string/)(难度中等) - [30. 串联所有单词的子串](https://leetcode-cn.com/problems/substring-with-concatenation-of-all-words/)(难度困难) - [438. 找到字符串中所有字母异位词](https://leetcode-cn.com/problems/find-all-anagrams-in-a-string/) ### 总结 - 什么是滑动窗口算法 - 需要记住滑动窗口算法的基本步骤 - 滑动窗口算法适合用来解决哪一类问题?
题目列表
总结