题目链接 题意:n个模式串,一个待匹配串,求求每个模式串在待匹配串中出现次数。 思路:记录模式串尾端,然后遍历统计。 #include <bits/stdc++.h> using namespace std; const int N = 50*1010; int n; char a[1010][60 Read More
posted @ 2020-09-24 20:35 Ldler Views(117) Comments(0) Diggs(0)
题目链接 题意:给n个模式串,m个待匹配串,每个串中包含哪些模式串打印出来。 思路:主要没有看清不止小写字母导致一直wa。用一个数组记录最后结尾的状态,然后去判断一下就好了。 #include <bits/stdc++.h> using namespace std; const int N = 1e Read More
posted @ 2020-09-24 20:15 Ldler Views(97) Comments(0) Diggs(0)