1078. Bigram 分词 - 力扣(LeetCode)
可以使用 Python 来实现,代码如下:
def find_ocurrences(text, first, second):
words = text.split()
result = []
for i in range(len(words) - 2): # 遍历到倒数第三个单词
if words[i] == first and words[i + 1] == second:
result.append(words[i + 2])
return result
# 示例 1
text1 = "alice is a good girl she is a good student"
first1, second1 = "a", "good"
print(find_ocurrences(text1, first1, second1)) # 输出: ["girl", "student"]
# 示例 2
text2 = "we will we will rock you"
first2, second2 = "we", "will"
print(find_ocurrences(text2, first2, second2)) # 输出: ["we", "rock"]
解释:
-
将
text
按空格拆分成words
列表。 -
遍历
words
,检查相邻两个单词是否是first
和second
。 -
若匹配成功,则将紧随其后的单词(第三个单词)加入
result
列表。 -
返回
result
列表。
这样就能高效地找到所有符合 first second third
形式的 third
单词! 🚀