您好,这是我正在尝试实现 Morris-Pratt 算法的代码的一部分。当我比较我的变量时,如果发现它们不匹配,这是因为我的变量“Temp”之一正在将额外的字符添加到数组的末尾。这是我的代码...
// Calculate the next talbe
char test[searchLen];
for(int i = 0; i < searchLen; i++)
{
test[i] = fileContent[currPos+i];
}
cout << "SEARCHLEN: " << searchLen << endl;
cout << "TEST: " << '\t' << '\t' << test << endl;
cout << "SEARCH: " << '\t' << search << endl;
cout << strcmp(test,search) << endl << endl;
// Determine if a match is detected
if(strcmp(test,search)==0)
{
cout << "----------------------> Match detected at: " << currPos << endl;
}
currPos ++;
}
return numberOfComparisons;
}
输出看起来像这样......
SEARCHLEN: 8
TEST: athsoutg5?h
SEARCH: brilling
-1
如您所见, 5?H 不应该在那里并且正在破坏我的代码。