LeetCode hot100@滑动窗口&子串 2024-10-08 19:27 | 94 | 0 | 算法 476 字 | 11 分钟 滑动窗口大致逻辑: int left = 0, right = 0; while (right < s.size()) { // 增大窗口 window.add(s[right]); right++; while (window needs shrink) { // 缩小窗口 window.remove(s[left]); l… leetcode力扣子串滑动窗口