Problem 76: Minimum Window Substring
思路
这道题非常地经典,甚至衍生出了一个模板,可以处理类似的所有 substring 类的题目。
这道题的思路就是用一个 hashmap (这里用的是 128 长度的 array,间接起到了 map 的作用) 来存储 pattern 元素;用 count 来判断当前的 window 里是否包含了这个 pattern
这里的处理问题的顺序是:先移动 j 尾巴,再移动 i head。
复杂度
Time:
O(n)
易错点
关键语句的解读
这里实际上是,
PreviousProblem 438: Find All Anagrams in a StringNextProblem 159: Longest Substring with At Most Two Distinct Characters
Last updated