常见字符串匹配算法

BF
Brute_Force算法
将模式串和匹配串进行匹配,模式串从第一个字符开始与匹配串进行匹配,如果不同则从第二个字符开始匹配,知道全部匹配

#include<stdio.h>
#include<string.h>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;
int BF(string s,string t)
{
	int i=0,j=0;
	while(s[i]!='\0'&&t[j]!='\0')
	{
		if(s[i]==t[j])
		i++,j++;
		else
		{
			i=i-j+1;
			j=0;
		}
	}
	if(j>=t.length())
	return i-t.length();
	else
	return -1;
}
int main()
{
	string s,t;
	cin>>s>>t;
	printf("%d\n",BF(s,t));
	return 0;
}

RK
Rabin_Karp算法

KMP
Knuth-Morris-Pratt算法
核心是利用每次匹配失败的信息,尽量减少模式串与主串的匹配次数以达到快速匹配的目的

#include<string.h>
#include<iostream>
#include<stdio.h>
#include<algorithm>
using namespace std;
const int maxn=1e6+10;
char s[maxn],p[maxn];
int net[maxn];
int pl,sl;
void pre()
{
	int i=0,j=-1;
	net[0]=-1;
	while(i<pl)
	{
		if(p[i]==p[j]||j==-1)
		net[++i]=++j;
		else
		j=net[j];
	}
}
int KMP()
{
	int i=0,j=0,ans=0;
	while(i<sl&&j<pl)
	{
		if(s[i]==p[j]||j==-1)
		i++,j++;
		else
		j=net[j];
		if(j==pl)
		ans++,j=0;
	}
	return ans;
}
int main()
{
	while(scanf("%s",s))
	{
		if(strcmp(s,"#")==0)break;
		scanf("%s",p);
		sl=strlen(s);
		pl=strlen(p);
		pre();
		int ans=KMP();
		printf("%d\n",ans);
	}
	return 0;
}

BM算法
哦 我不会

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值