KMP算法(C++)

KMP算法与BF算法不一样的在于,当主串与子串不匹配时,主串不回溯,选择了子串回溯,大大提高了运算效率。

借用了next1【】数组,让子串回溯。get_next函数求next1【】数组,get_next函数的实现难点在于下列几行代码:

while (i < T.length)

{

if (j == 0 || T.ch[i] == T.ch[j])

{

++i, ++j;

next1[i] = j;

}

else

j = next1[j];

}

只要明确两点就容易理解:

1、T j == Tnext[j],那么next[j+1]的最大值为next[j]+1。

2、T j != Tnext[j],那么next[j+1]可能的次最大值为next[ next[j] ]+1,以此类推即可求出next[j+1]。

cpp 复制代码
#include<iostream>
#include<string>
using namespace std;
int next1[1000];
typedef struct node
{
	char ch[251];
	int length=0;//串当前长度
}SString;
void get_next(SString T)
{
	int i = 1;//当前串正在匹配字符串位置,也是next数组的索引
	next1[1] = 0;
	int j = 0;
	while (i < T.length)
	{
		if (j == 0 || T.ch[i] == T.ch[j])
		{
			++i;
			++j;
			next1[i] = j;
		}
		else
			j = next1[j];
	}
}
int Index_KMP(SString S, SString T, int pos)//S主串,T子串,pos从主串pos位置开始匹配
{
	int i = pos, j = 1;//i为主串下标,j为子串下标
	while (i <= S.length && j <= T.length)
	{
		if (S.ch[i] == T.ch[j])//匹配,往下继续
		{
			i++;
			j++;
		}
		else
			j=next1[j];
	}
		if (j >= T.length) return i - T.length;//返回主串与子串匹配时,主串的第一个下标
		else return 0;
}
int main()
{
	SString  s;
	SString  t;
	cout << "输入主串长度:" ;
	cin >> s.length;
	cout << endl;
	cout << "输入子串长度:";
	cin >> t.length;
	cout << endl << "输入主串:";
	for (int i = 1; i <= s.length; i++)//从下标1开始储存
	{
		cin >> s.ch[i];
	}
	cout << endl << "输入子串:";
	for (int i = 1; i <= t.length; i++)
	{
		cin >> t.ch[i];
	}
	get_next(t);
	int a = Index_KMP(s, t, 1);
	cout <<endl<< a;
}
相关推荐
❦丿多像灬笑话、℡19 分钟前
leetcode热题100(240. 搜索二维矩阵 II)c++
算法·leetcode·矩阵
计科土狗31 分钟前
埃氏筛法与线性筛法
算法
小菜什么都不会36 分钟前
xtuoj 等式
数据结构·算法
Teng-Sun41 分钟前
如何结合PCA、t-SNE/UMAP与聚类算法进行高维数据分析?
算法·数据分析·聚类
A懿轩A1 小时前
C/C++ 数据结构与算法【树和森林】 树和森林 详细解析【日常学习,考研必备】带图+详细代码
c语言·c++·考研·数据结构与算法·树和森林
pk_xz1234561 小时前
使用Wikitext2数据集对Llama-7B和Llama3-8B模型进行50%权重剪枝的一般步骤和可能的实现方式
算法·llama·剪枝
C语言编程小刘 11 小时前
C语言期末复习1.1
c语言·算法·leetcode
Bucai_不才1 小时前
【C++】初识C++之C语言加入光荣的进化(下)
c语言·c++·面向对象编程
浊酒南街2 小时前
决策树(理论知识3)
算法·决策树·机器学习
A懿轩A2 小时前
C/C++ 数据结构与算法【哈夫曼树】 哈夫曼树详细解析【日常学习,考研必备】带图+详细代码
c语言·c++·学习·算法·哈夫曼树·王卓