题解 | #最小覆盖子串#

最小覆盖子串

https://www.nowcoder.com/practice/c466d480d20c4c7c9d322d12ca7955ac

import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     * 滑动窗口,用map维护窗口大小
     *
     * @param S string字符串
     * @param T string字符串
     * @return string字符串
     */
    public String minWindow(String str, String target) {
        Map<Character, Integer> map = new HashMap<>();
        for (char charAt : target.toCharArray()) {
            map.put(charAt, map.getOrDefault(charAt, 0) + 1);
        }

        int left = 0, right = 0, start = 0, window = Integer.MAX_VALUE;
        while (right < str.length()) {
            char rightCh = str.charAt(right);
            if (map.containsKey(rightCh)) {
                map.put(rightCh, map.get(rightCh) - 1);
            }
            while (judge(map)) {
                if (right - left + 1 < window) {
                    window = right  - left + 1;
                    start = left;
                }
                char leftCh = str.charAt(left++);
                if (map.containsKey(leftCh)) {
                    map.put(leftCh, map.get(leftCh) + 1);
                }
            }

            right++;
        }
        return window == Integer.MAX_VALUE ? "" : str.substring(start, start + window );
    }

    boolean judge(Map<Character, Integer> map) {
        for (Map.Entry<Character, Integer> entry : map.entrySet()) {
            if (entry.getValue() > 0) {
                return false;
            }
        }
        return true;
    }

}

全部评论

相关推荐

不愿透露姓名的神秘牛友
10-12 10:48
已编辑
秋招之苟:邻居家老哥19届双2硕大厂开发offer拿遍了,前几天向他请教秋招,他给我看他当年的简历,0实习实验室项目技术栈跟开发基本不沾边😂,我跟他说这个放在现在中厂简历都过不了
点赞 评论 收藏
分享
10-06 12:46
门头沟学院 Java
跨考小白:定时任务启动
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务