76. Minimum Window Substring
package LeetCode_76 /** * 76. Minimum Window Substring * https://leetcode.com/problems/minimum-window-substring/description/ * * Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n). Example: Input: S = "ADOBECODEBANC", T = "ABC" Output: "BANC" Note: If there is no such window in S that covers all characters in T, return the empty string "". If there is such window, you are guaranteed that there will always be only one unique minimum window in S. * */ class Solution { fun minWindow(s: String, t: String): String { val map = IntArray(256) var left = 0 var right = 0 var count = t.length var minLen = Int.MAX_VALUE for (c in t) { //can handle lower case and upper case map[c.toInt()]++ } var result = "" /* * 了解了第一道题目以后,这道题目也很容易思考出来。解题时,按照步骤: * (sliding template code ?) 1.扩展窗口,窗口中包含一个T中子元素,count–; 2.通过count或其他限定值,得到一个可能解。 3.只要窗口中有可能解,那么缩小窗口直到不包含可能解。 首先,维护一个map,一个窗口。先看右边界,当窗口扩展包含全部ABC时停下,这个时候必然有count == 0。 但是,这个时候的结果字符串可能很长,所以我们要接着缩小左边界。 同时,当count == 0时,我们要一直缩小左边界以找到更短的字符串。 慢慢count>0了,表明窗口中不包含全部的T了,那么又要扩展窗口。依次类推,最终找到最短字符串。 * */ while (right < s.length || count == 0) { if (count == 0) {//find out one match string if (minLen > right - left + 1) { minLen = right - left + 1 result = s.substring(left, right) } //moving left pointer if (map[s[left++].toInt()]++ >= 0) { count++ } } else { //S = "ADOBECODEBANC", T = "ABC" //find out the character in S match in map if (map[s[right++].toInt()]-- >= 1) { count-- } } } //println(result) return result } }
标签:
leetcode
, sliding-window
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
2019-06-20 203. Remove Linked List Elements