zoukankan      html  css  js  c++  java
  • [Leetcode] Two pointer-- 76. Minimum Window Substring

    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).

    For example,
    S = "ADOBECODEBANC"
    T = "ABC"

    Minimum window is "BANC".

    Note:
    If there is no such window in S that covers all characters in T, return the empty string "".

    If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.

    Solution:

    windows problem: use two pointer, fix left and move right pointer, traverse source s and find the current windows containing t,
    then move the left point to next point to update the current window length to get the minimum window

     1 targetHash = {}         #store the target character counter     
     2         
     3         for c in t:
     4             if c not in targetHash:
     5                 targetHash[c] = 1
     6             else:
     7                 targetHash[c] += 1
     8         
     9         srcHash = {}
    10         
    11         count = 0         #decide when T matched in S
    12         left = 0
    13         right = 0
    14         minWindLen = 2**32
    15         minStart = 0
    16         
    17         #print ("target hash: ", targetHash)
    18         while (right < len(s)):
    19             
    20             if s[right] in targetHash and targetHash[s[right]] > 0:
    21                 if s[right] not in srcHash:
    22                     srcHash[s[right]] = 1
    23                 else:
    24                      srcHash[s[right]] += 1
    25                 if (srcHash[s[right]] <= targetHash[s[right]]):
    26                     count += 1
    27             
    28             if count == len(t):
    29                     
    30                 
    31                 while (s[left] not in targetHash  or (s[left] in srcHash and s[left] in targetHash and srcHash[s[left]] > targetHash[s[left]])):
    32                     if s[left] in targetHash:
    33                         srcHash[s[left]] -= 1
    34                     left += 1
    35                     
    36                 if minWindLen > (right-left+1):
    37                     minWindLen = right-left+1
    38                     minStart = left
    39                                 
    40             
    41             right += 1
    42                 
    43         return s[minStart: minStart+minWindLen] if minWindLen <= len(s) else ""
  • 相关阅读:
    面试题
    关于TDD的想法
    GAMS 基础语法
    不要迷信数据
    在Microsoft AJAX Library下JavaScript的面向对象开发
    应用OOP的设计过程演化(一)
    应用OOP的设计过程演化(二)
    探索AJAX中的消息传输模式(一)
    应用OOP的设计过程演化(三)
    SecureCRT 6.0.2和SecureFX 6.0.2 软件 及 注册机
  • 原文地址:https://www.cnblogs.com/anxin6699/p/8249733.html
Copyright © 2011-2022 走看看