leetcode第30题python版串联所有单词的子串

class Solution:
    """
    30. 串联所有单词的子串
    给定一个字符串 s 和一些 长度相同 的单词 words 。找出 s 中恰好可以由 words 中所有单词串联形成的子串的起始位置。
注意子串要与 words 中的单词完全匹配,中间不能有其他字符 ,但不需要考虑 words 中单词串联的顺序。
    """
    def findSubstring(self, s: str, words: List[str]) -> List[int]:
        # 思路:双指针法,参考视频:https://www.bilibili.com/video/BV1Tg4y1z7jR/?spm_id_from=333.788
        # 1. 初始化及特殊处理
        if not s:
            return []
        n = len(s)
        worldCount = len(words)
        if worldCount == 0:
            return []
        wordLen = len(words[0])
        sets = {}
        res = []
        for word in words:
            sets[word] = sets.setdefault(word, 0) + 1
        
        # 2. 遍历
        # 2.1 外层循环只需要移动一个单词的长度,按字母移动
        for i in range(wordLen):
            # total用于记录需要剩余需要匹配的单词个数
            left, total, matchSets = i, worldCount, {}
            # 2.2 内层循环需要以单词为步长移动, 内外层这种移动方式可以避免重复计算
            # 内层循环配合左右指针法
            for j in range(i, n, wordLen):
                sliceWord = s[j: j+wordLen]
                if sliceWord in sets:
                    matchSets[sliceWord] = matchSets.setdefault(sliceWord, 0) + 1
                    total -= 1
                    # 如果匹配字典matchSets中对应的单词数超出了,左指针开始移动
                    while matchSets[sliceWord] > sets[sliceWord]:
                        removeWord = s[left: left+wordLen]
                        matchSets[removeWord] -= 1
                        total += 1
                        left += wordLen
                    if total == 0:
                        res.append(left)
                else: # 容易遗漏, 而且需要修改起始位置为j + wordLen
                    left, total, matchSets = j + wordLen, worldCount, {}

        # 3. 返回结果值
        return res
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ICPunk

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值