#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define MAX 10000
#define MAX_LINES 100
//P[0]不使用,P[i]表示B串的前i个字符中, 前P[i]个字符和后P[i]个字符相同
int P[MAX]; //尽管strlen(b)为7,但P[7]用不到,只用P[1]到P[6]
char* KMP(char* A, char* B); //返回B串在A串中的位置 B串:模式串 A串:待匹配串
void InitP(char *B); //将B串(模式串)进行自我匹配
char* strtolower(char *s)
{
for(int i=0;i<sizeof(s);i++)
{
s[i]=tolower(s[i]);
}
return s;
}
int main()
{
int mark=0;
int lines=0;
char pattern_o[MAX] = {};
char pattern[MAX] = {};
char strings_o[MAX_LINES][MAX]={};
char strings[MAX_LINES][MAX]={};
scanf("%s",&pattern_o);
scanf("%d",&mark);
scanf("%d",&lines);
for(int i=0;i<lines;i++)
{
scanf("%s",&strings_o[i]);
}
if(mark==0)
{
for(int i=0;i<strlen(pattern_o);i++)
{
pattern[i] = tolower(pattern_o[i]);
}
for(int i=0;i<lines;i++)
{
for(int j=0;j<strlen(strings_o[i]);j++)
{
strings[i][j]=tolower(strings_o[i][j]);
}
}
}
else
{
for(int i=0;i<strlen(pattern_o);i++)
{
pattern[i] = pattern_o[i];
}
for(int i=0;i<lines;i++)
{
for(int j=0;j<strlen(strings_o[i]);j++)
{
strings[i][j]=strings_o[i][j];
}
}
}
InitP(pattern);
for (int i=0;i<lines;i++)
{
char *idx=KMP(strings[i],pattern);
if(idx)
{
printf("%s\n",strings_o[i]);
}
}
return 0;
}
char* KMP(char *A, char *B)
{
int len1=strlen(A), len2=strlen(B);
int i, j=0; //j代表目前B串中已与A串匹配了的字符的个数
for(i=0; i<len1; ++i)
{
while(j>0 && A[i]!=B[j]) //0...j-1,已匹配了j个字符,sub[j]是sub的第j+1的字符,因为下标从0开始
j = P[j];
if(A[i] == B[j])
++j;
if(j == len2) //当j(B中已匹配了的字符串的个数)与B串本身长度相等时,说明匹配完毕
return A+i-j+1; //此时可计算出指针位置
}
return NULL;
}
void InitP(char *B)
{
P[0] = 0;
P[1] = 0;
int i, j=0, len=strlen(B);
for(i=2; i<len; ++i)
{
/*while(j>0 && B[j]!=B[i-1]), 这里的j代表
在比较第i个字符(从1开始数)和B[j]时,前i-1个字符中的前j个字符和后j的字符相同
B[j]代表第j的字符(从1开始数)的下一个字符*/
while(j>0 && B[j]!=B[i-1]) //如果第i个字符和第j个字符的下一个字符(即B[j])不同,则改变j的值,再重新比较
j = P[j];
if(B[j] == B[i-1])
++j;
P[i] = j;
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。