こんにちは、これは Morris-Pratt アルゴリズムを実装しようとしている私のコードの一部です。変数が一致しないことがわかった場合に変数を比較しているとき、これは、変数の 1 つ「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 はそこにあるはずがなく、私のコードを壊しています。