33 size_t pattern_length = pattern.size();
34 std::vector<size_t> failure(pattern_length + 1);
35 failure[0] = std::string::npos;
36 size_t j = std::string::npos;
37 for (
int i = 0; i < pattern_length; i++) {
38 while (j != std::string::npos && pattern[j] != pattern[i]) {
53size_t kmp(
const std::string &pattern,
const std::string &text) {
54 if (pattern.empty()) {
58 size_t text_length = text.size();
59 size_t pattern_length = pattern.size();
61 for (
size_t j = 0; j < text_length; j++) {
62 while (k != std::string::npos && pattern[k] != text[j]) {
65 if (++k == pattern_length) {
69 return std::string::npos;
80 assert(
kmp(
"abc1abc12l",
"alskfjaldsabc1abc1abc12k2") == std::string::npos);
81 assert(
kmp(
"bca",
"abcabc") == 1);
82 assert(
kmp(
"World",
"helloWorld") == 5);
83 assert(
kmp(
"c++",
"his_is_c++") == 7);
84 assert(
kmp(
"happy",
"happy_coding") == 0);
85 assert(
kmp(
"",
"pattern is empty") == 0);
88 std::cout <<
"All KMP algorithm tests have successfully passed!\n";
size_t kmp(const std::string &pattern, const std::string &text)
KMP algorithm to find a pattern in a text.
static void tests()
self-test implementations
String search algorithms.
size_t kmp(const std::string &pattern, const std::string &text)
KMP algorithm to find a pattern in a text.
std::vector< size_t > getFailureArray(const std::string &pattern)
Generate the partial match table aka failure function for a pattern to search.