程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++實現KMP算法

C++實現KMP算法

編輯:C++入門知識

C++實現KMP算法


#include 
#include 
#include 
using namespace std;
void NEXT(const string &T, vector &next)
{
	//按模式串生成vector,next(T.size())	
	next[0] = -1;
	for(int i = 1; i < T.size(); i++)
	{
		int j = next[i - 1];
		while(T[i] != T[j + 1] && j >= 0)
			j = next[j];
		//遞推計算
		if(T[i] == T[j + 1])
				next[i] = j + 1;
		else
				next[i] = 0;
	}
}
string::size_type COUNT_KMP(const string &S, const string &T)
{
	//利用模式串T的next函數求T在主串S中的個數count的KMP算法
	//其中T非空,
	vector	next(T.size());
	NEXT(T, next);
	string::size_type index, count=0;
	for(index=0; index < S.size(); ++index)
	{
		int pos=0;
		string::size_type iter = index;
		while(pos < T.size() && iter>S;
	cout<<"請輸入子串(要查找的)"<>T;
	string::size_type count =COUNT_KMP(S,T);
	cout<<"一共有 "<

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved