LeetCode 76. Minimum Window Substring
Posted 約束の空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 76. Minimum Window Substring相关的知识,希望对你有一定的参考价值。
典型Sliding Window的问题,维护一个区间,当区间满足要求则进行比较选择较小的字串,重新修改start位置。
思路虽然不难,但是如何判断当前区间是否包含所有t中的字符是一个难点(t中字符有重复)。可以通过一个hashtable,记录每个字符需要的数量,这个数量可以为负(当区间内字符数超过所需的数量)。还需要一个count判断多少字符满足要求了,如果等于t.size(),说明当前窗口的字串包含t里所有的字符了。
class Solution { public: string minWindow(string s, string t) { unordered_map<char,int> hash; // char and the num it needs (it can be minus) int start=0; string res; int min_len=INT_MAX; for (char ch:t) hash[ch]++; int count=0; for (int end=0;end<s.size();++end){ if (hash.count(s[end])){ --hash[s[end]]; if (hash[s[end]]>=0) ++count; while (count==t.size()){ if (end-start+1<min_len){ min_len = end-start+1; res = s.substr(start,end-start+1); } if (hash.count(s[start])){ ++hash[s[start]]; if (hash[s[start]]>0) --count; } ++start; } } } return res; } };
以上是关于LeetCode 76. Minimum Window Substring的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode76.Minimum Window Substring
LeetCode in Python 76. Minimum Window Substring
leetcode 76. Minimum Window Substring
Leetcode 76: Minimum Window Substring