0%

『LeetCode』1408 数组中的字符串匹配

题目

1408. 数组中的字符串匹配

给你一个字符串数组 words ,数组中的每个字符串都可以看作是一个单词。请你按 任意 顺序返回 words 中是其他单词的子字符串的所有单词。

如果你可以删除 words[j] 最左侧和/或最右侧的若干字符得到 word[i] ,那么字符串 words[i] 就是 words[j] 的一个子字符串。

示例 1:

输入:words = ["mass","as","hero","superhero"]
输出:["as","hero"]
解释:"as" 是 "mass" 的子字符串,"hero" 是 "superhero" 的子字符串。
["hero","as"] 也是有效的答案。

示例 2:

输入:words = ["leetcode","et","code"]
输出:["et","code"]
解释:"et" 和 "code" 都是 "leetcode" 的子字符串。

示例 3:

输入:words = ["blue","green","bu"]
输出:[]

提示:

  • 1 <= words.length <= 100
  • 1 <= words[i].length <= 30
  • words[i] 仅包含小写英文字母。
  • 题目数据 保证 每个 words[i] 都是独一无二的。

标签

字符串, 字符串匹配


题解

【数组中的字符串匹配】枚举

枚举

遍历所有单词逐一枚举匹配即可

1
2
3
4
# Code language: Python
class Solution:
def stringMatching(self, words: List[str]) -> List[str]:
return [s for s in words if any(s in w and s != w for w in words)]
1
2
3
4
# Code language: Python
class Solution:
def stringMatching(self, words: List[str]) -> List[str]:
return list(filter((lambda s: any(s != w and s in w for w in words)), words))
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code language: Java
class Solution {
public List<String> stringMatching(String[] words) {
List<String> ans = new ArrayList<>();
for (int i = 0, n = words.length; i < n; ++i) {
String s = words[i];
for (int j = 0; j < n; ++j) {
if (i == j) continue;
if (words[j].indexOf(s) >= 0) {
ans.add(s);
break;
}
}
}
return ans;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code language: C++
class Solution {
public:
vector<string> stringMatching(vector<string>& words) {
vector<string> ans;
for (int i = 0, n = words.size(); i < n; ++i) {
string& s = words[i];
for (int j = 0; j < n; ++j) {
if (i == j) continue;
if (words[j].find(s) != string::npos) {
ans.emplace_back(s);
break;
}
}
}
return ans;
}
};
  • 时间复杂度: \(O(n^2)\)
  • 空间复杂度: \(O(1)\), 忽略返回答案的开销

如果对你有帮助的话,请给我点个赞吧~

欢迎前往 我的博客Algorithm - Github 查看更多题解

--- ♥ end ♥ ---

欢迎关注我呀~