题目来源:
leetcode题目,网址:1967. 作为子字符串出现在单词中的字符串数目 - 力扣(LeetCode)
解题思路:
遍历字符串数组,根据 word.indexOf(pattern) 的返回值是否为 -1 判断改字符串是否为单词的字符串并对其计数即可。
解题代码:
class Solution {
public int numOfStrings(String[] patterns, String word) {
int res=0;
for(String pattern:patterns){
if(word.indexOf(pattern)!=-1){
res++;
}
}
return res;
}
}
总结:
官方题解给出了暴力匹配和 KMP 两种解法。上次看懂的KMP算法有忘了,重新看一遍......文章来源:https://www.toymoban.com/news/detail-540273.html
贴一个 KMP 算法链接,下次碰到时就不用找了。 前缀函数与 KMP 算法 - OI Wiki (oi-wiki.org)文章来源地址https://www.toymoban.com/news/detail-540273.html
到了这里,关于题目:1967.作为子字符串出现在单词中的字符串数组的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!