您的位置:首页 > 编程语言 > C语言/C++

C++实现KMP模式匹配算法

2015-08-20 23:22 465 查看
#include<iostream>
#include<string>
#include<vector>

using namespace std;

void Next(const string & pat,vector<int> & next)
{
next.resize(pat.length());
if(pat.length() == 0)
return;
next[0] = -1;

for(size_t pos = 1; pos < pat.length(); ++pos)
{
size_t sublen = pos-1;
while(sublen >= 0)
{
if(pat.substr(0, sublen) == pat.substr(pos-sublen+1, sublen))
break;
--sublen;
}
next[pos] = sublen;
}
return;
}

int main(void)
{
string str1, str2;
while(cin >> str1 >> str2) {
vector<int> next;
Next(str2, next);

vector<int> pos;

int i = 0, j1 = 0, j2 = 0;
while(j1 < str1.length())
{
j2 = j1 - i;
if(j2 >= str2.length()) {
// found
pos.push_back(i);
// move on;
int delta = str2.length();
i = i + delta;
j1 = max(i,j1);
}
else if(str1[j1] == str2[j2]) {
++j1;
}
else { // str1[j1] != str2[j2];
int delta = j2 - next[j2];
i = i + delta;
j1 = max(i,j1);
}
}

//output.
cout << "str1.length(): " << str1.length() << endl;
cout << "str2.length(): " << str2.length() << endl;
cout << "str1 from pos: " << endl;
for(int i = 0; i < pos.size(); ++i)
cout << "[" << (i+1) << "]: " << str1.substr(pos[i], string::npos) << endl;
cout << "str2: " << str2 << endl;
}
return 0;
}

参考自: http://www.cnblogs.com/BeyondAnyTime/archive/2012/07/09/2583133.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: