30. 串联所有单词的子串
30. 串联所有单词的子串](https://leetcode.cn/problems/substring-with-concatenation-of-all-words/)
给定一个字符串 s
和一些 长度相同 的单词 words
。找出 s
中恰好可以由 words
中所有单词串联形成的子串的起始位置。
注意子串要与 words
中的单词完全匹配,中间不能有其他字符 ,但不需要考虑 words
中单词串联的顺序。
示例 1:
输入:s = "barfoothefoobarman", words = ["foo","bar"]
输出:[0,9]
解释:
从索引 0 和 9 开始的子串分别是 "barfoo" 和 "foobar" 。
输出的顺序不重要, [9,0] 也是有效答案。
示例 2:
输入:s = "wordgoodgoodgoodbestword", words = ["word","good","best","word"]
输出:[]
示例 3:
输入:s = "barfoofoobarthefoobarman", words = ["bar","foo","the"]
输出:[6,9,12]
提示:
1 <= s.length <= 104
s
由小写英文字母组成1 <= words.length <= 5000
1 <= words[i].length <= 30
words[i]
由小写英文字母组成
思路:
题目并没有说words中没有重复的字符串,因此要想到比较字符串相等可以使用子串出现的次数,用哈希表记录下子串以及它应该出现的次数,如果在s中的窗口中的子串出现次数和哈希表中相等那么就满足条件
class Solution {
public:
vector<int> findSubstring(string s, vector<string>& words) {
vector<int> res; // 结果
unordered_map<string, int> search;
for (auto &word : words) ++search[word]; // 参照物初始化
int n = s.size(), m = words.size(), len = words[0].size(); // 获取隐藏变量
for (int i = 0, j = 0; i < n - m * len + 1; ++i) { // 主逻辑
unordered_map<string, int> sub; // 子字符 查找的中间结果
for (j = 0; j < m; ++j) { // 子字符串查找逻辑
auto word = s.substr(i + j * len, len); // 获取子串
if (!search.count(word)) break; // 子串 不在 words 里面
if (++sub[word] > search[word]) break; // 子串个数 比 words 多
}
if (j == m) res.push_back(i); // 完全匹配
}
return res;
}
};
本文来自博客园,作者:{BailanZ},转载请注明原文链接:https://www.cnblogs.com/BailanZ/p/16265432.html