我一直在研究这个Morris-Pratt算法,以便将子串与文本匹配,而我在如何在实际函数中声明失败函数时遇到了麻烦,因此编译器不会抱怨。我有2个小时的时间来完成这个。所以请尽快帮助我:/
int KMPmatch(const string& text, const string& pattern)
{
int n = text.size();
int m = pattern.size();
std::vector<int> fail = computeFailFunction(pattern);
int i = 0;
int j = 0;
while (i < n)
{
if (pattern[j] == text[i])
{
if (j == m-1) return i-m+1;
i++; j++;
}
else if (j > 0) j = fail[j-1];
else i++;
}
return -1;
}
//KMPFailure function
std::vector<int> computeFailFunction(const string& pattern)
{
std::vector <int> fail(pattern.size());
fail[0] = 0;
int m = pattern.size();
int j = 0;
int i = 1;
while (i < m)
{
if (pattern[j] == pattern[i])
{
fail[i] = j+1;
i++; j++;
}
else if (j > 0)
{
j = fail [j-1];
}
else
{
fail[i]= 0;
i++;
}
}
return fail;
}
答案 0 :(得分:0)
将std::vector<int> computeFailFunction(const string& pattern);
置于int KMPmatch(const string& text, const string& pattern)
之前。
或者将函数声明放入头文件并包含在源文件中,这就是具有多个源文件的项目。