字符串比较之KMP算法完整实现

#include<iostream>
#include<string>
#include<vector>
using namespace std;
class KMP {
	int* next;
public:
	int KMP_Match_First(string s1, string s2 );//在文本串s1中找到第一个模式串s2的位置
	void KMP_Match_All(string s1 , string s2 ); //在文本串s1中找到所有模式串s2的位置
	void getNext(string s, int*& next);
};

int KMP::KMP_Match_First(string s1,string s2)
{
	if (s1.length() < s2.length()) {
		cout << "在文本串中未匹配到模式串" << endl;
		return -1;
	}
	
	getNext(s2, next);
	int j = 0;
	for (int i = 0; i < s1.length(); i++)
	{
		while (j > 0 && s1[i] != s2[j])
			j = next[j - 1];
		if (s1[i] == s2[j])
			j++;
		if (j == s2.length())
		{
			cout << "在文本串中" << i - s2.length() + 1 << "位置匹配到模式串" << endl;
			return i - s2.length() + 1;
		}
	}
	cout << "在文本串中未匹配到模式串" << endl;
	return -1;
}

void KMP::KMP_Match_All(string s1, string s2)
{
	int pos = -1;
	int i = 0;
	vector<int> ans;
	while (1)
	{
		pos = KMP_Match_First(s1, s2);
		if (pos == -1 || s1.length() - s2.length() < s2.length())
			break;
		else {
			ans.push_back(pos + i * s2.length());
			s1.erase(s1.begin() + pos, s1.begin() + pos + s2.length() );
			i++;
		}
	}
	if(ans.empty()) cout << "在文本串中未匹配到模式串" << endl;
	else {
		cout << "在文本串中匹配到模式串!位置如下:" << endl;
		for (vector<int>::iterator it = ans.begin(); it < ans.end(); it++)
			cout << *it << '\t';
	}

	
}

void KMP::getNext(string s, int*& next)
{
	int len = s.length();
	next = new int[len];
	next[0] = 0;
	int j = 0;
	for (int i = 1; i < len; i++)
	{
		while (j > 0 && s[i] != s[j])
			j = next[j - 1];
		if (s[i] == s[j]) j++;
		next[i] = j;
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值