zoukankan      html  css  js  c++  java
  • [leetcode]Minimum Window Substring @ Python

    原题地址:https://oj.leetcode.com/problems/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 emtpy string "".

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

    解题思路:双指针思想,尾指针不断往后扫,当扫到有一个窗口包含了所有T的字符,然后再收缩头指针,直到不能再收缩为止。最后记录所有可能的情况中窗口最小的。

    代码:

    class Solution:
        # @return a string
        def minWindow(self, S, T):
            count1={}; count2={}
            for char in T:
                if char not in count1: count1[char]=1
                else: count1[char]+=1
            for char in T:
                if char not in count2: count2[char]=1
                else: count2[char]+=1
            count=len(T)
            start=0; minSize=100000; minStart=0
            for end in range(len(S)):
                if S[end] in count2 and count2[S[end]]>0:
                    count1[S[end]]-=1
                    if count1[S[end]]>=0:
                        count-=1
                if count==0:
                    while True:
                        if S[start] in count2 and count2[S[start]]>0:
                            if count1[S[start]]<0:
                                count1[S[start]]+=1
                            else:
                                break
                        start+=1
                    if minSize>end-start+1:
                        minSize=end-start+1; minStart=start
            if minSize==100000: return ''
            else:
                return S[minStart:minStart+minSize]
  • 相关阅读:
    C#快速生成数据数组
    PHP访问Oracle数据库
    C# 监听HTTP请求
    三维重建基础
    三维重建技术概述
    python+OpenCV 特征点检测
    windows10,redhat6.5下python3.5.2使用cx_Oracle链接oracle
    《读书报告 -- Elasticsearch入门 》-- 安装以及简单使用(1)
    2016年简直一晃而过
    windows下python3.5使用pip离线安装whl包
  • 原文地址:https://www.cnblogs.com/zuoyuan/p/3785421.html
Copyright © 2011-2022 走看看