题目描述
给你一个字符串数组 words
,数组中的每个字符串都可以看作是一个单词。请你按 任意 顺序返回 words
中是其他单词的子字符串的所有单词。
如果你可以删除 words[j]
最左侧和/或最右侧的若干字符得到 word[i]
,那么字符串 words[i]
就是 words[j]
的一个子字符串。
样例
输入:words = ["mass","as","hero","superhero"]
输出:["as","hero"]
解释:"as" 是 "mass" 的子字符串,"hero" 是 "superhero" 的子字符串。
["hero","as"] 也是有效的答案。
输入:words = ["leetcode","et","code"]
输出:["et","code"]
解释:"et" 和 "code" 都是 "leetcode" 的子字符串。
输入:words = ["blue","green","bu"]
输出:[]
限制
1 <= words.length <= 100
1 <= words[i].length <= 30
words[i]
仅包含小写英文字母。- 题目数据 保证 每个
words[i]
都是独一无二的。
算法
(暴力枚举) $O(n^2m)$
- 对于每个字符串,暴力枚举其它所有的字符串,判断是否为某个字符串的子串。
时间复杂度
- 每个字符串需要枚举其余 $n-1$ 个字符串,判断子串的时间复杂度为 $O(m)$,故总时间复杂度为 $O(n^2m)$,其中 $m$ 为字符串的最大长度。
空间复杂度
- 需要额外 $O(n)$ 的空间存储答案。
C++ 代码
class Solution {
public:
bool check(const vector<string> &words, int i) {
int n = words.size();
for (int j = 0; j < n; j++)
if (j != i)
if (words[j].find(words[i]) != string::npos)
return true;
return false;
}
vector<string> stringMatching(vector<string>& words) {
int n = words.size();
vector<string> ans;
for (int i = 0; i < n; i++)
if (check(words, i))
ans.push_back(words[i]);
return ans;
}
};