leetCode76. 最小覆盖子串

leetCode76. 最小覆盖子串


题目思路


代码

cpp 复制代码
// 双指针 + 哈希表
// 这里cnt维护过程:先找到能够匹配T字符串的滑动窗口,然后这个cnt就固定了,因为i向前移动的同时,j也会维护着向前
// 就是当又出现能够满足T字符串的时候,j就会向前移动,且对应的字符的删除工作也做好了,这样就可以动态的维护cnt不变
class Solution {
public:
    string minWindow(string s, string t) {
        unordered_map<char,int> hs, ht;

        // 用哈希表ht维护t中所有字符出现的次数
        for(auto c : t) ht[c]++;

        // 双指针算法维护滑动窗口
        string res = ""; // 定义答案
        int cnt = 0; // 维护滑动窗口中有效字符数量
        for(int i = 0, j = 0; i < s.size() ; i++){
            hs[s[i]]++; // i向前移动

            if(hs[s[i]] <= ht[s[i]]) cnt++; // 看对应字符是否有效
            while(hs[s[j]] > ht[s[j]]) hs[s[j++]] --; // 看j向前移动的时机,并且对应的hs值也应该减少
            if(cnt == t.size()){
                if(res.empty() || i - j + 1 < res.size()){
                    res = s.substr(j, i - j + 1);
                }
            }
        }

        return res;
    }
};
相关推荐
旖旎夜光4 小时前
力控面试题 01.01: 判定字符是否唯一(位运算) —— 题解
c++·学习·算法·leetcode·力控
CoderYanger7 小时前
A.每日一题:835. 图像重叠
java·开发语言·程序人生·leetcode·面试·职场和发展·学习方法
圣保罗的大教堂7 小时前
leetcode 3524. 求出数组的 X 值 I 中等
leetcode
Tim_108 小时前
【LeetCode】338、比特位计数
c++·算法·leetcode
mmmmath_39 小时前
LeetCode.028.找出字符串中第一个匹配项的
数据结构·算法·leetcode
Navigator_Z10 小时前
LeetCode //C - 1255. Maximum Score Words Formed by Letters
c语言·算法·leetcode
All for pursuit.10 小时前
【栈-4】739.每日温度
数据结构·c++·算法·leetcode
开开心心就好10 小时前
安卓手写文字生成工具,多种纸张一直免费
网络·网络协议·tcp/ip·leetcode·智能手机·电脑·模拟退火算法
All for pursuit.10 小时前
【栈-5】84.柱状图中最大的矩形
数据结构·c++·算法·leetcode
圣保罗的大教堂11 小时前
leetcode 1665. 完成所有任务的最少初始能量 中等
leetcode