leetcode:Substring with Concatenation of All Words

Substring with Concatenation of All Words
You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a concatenation of each word in words exactly once and without any intervening characters.

For example, given: s:”barfoothefoobarman” words:[“foo”, “bar”]
You should return the indices: [0,9](order does not matter).

题意
给定一个字符串S和一个字符串数组L,L中的字符串长度都相等,找出S中所有的子串,该子串恰好包含L中所有字符各一次并且不含其他字符,返回所有这样子串的起始位置。

分析
把字符串数组L建一个Map字符窗,将字符窗从字符串S的第一个字符开始匹配并向后滑动,直到S的最后一个字符,输出匹配结果。

C++11代码

// 时间复杂度O(n*m),空间复杂度O(m)
class Solution {
public:
    vector<int> findSubstring(string s, vector<string>& dict) {
        size_t wordLength = dict.front().length();
        size_t catLength = wordLength * dict.size();
        vector<int> result;
        if (s.length() < catLength) return result;
        unordered_map<string, int> wordCount;
        for (auto const& word : dict){
            ++wordCount[word];
        }   
        for (auto i = begin(s); i <= prev(end(s), catLength); ++i) {
            unordered_map<string, int> unused(wordCount);
            for (auto j = i; j != next(i, catLength); j += wordLength) {
                auto pos = unused.find(string(j, next(j, wordLength)));
                if (pos == unused.end() || pos->second == 0) break;
                if (--pos->second == 0) unused.erase(pos);
            }
            if (unused.size() == 0) result.push_back(distance(begin(s), i));
        }
        return result;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值