The Knuth–Morris–Pratt algorithm is an efficient string matching algorithm.

learn more… | top users | synonyms

8
votes
1answer
221 views

Knuth-Morris-Pratt algorithm in Haskell

I have a trouble with understanding this implementation of the Knuth-Morris-Pratt algorithm in Haskell. http://twanvl.nl/blog/haskell/Knuth-Morris-Pratt-in-Haskell In particular I don't understand ...
0
votes
2answers
50 views

SIGSEGV error while uploading input

I tried to solve the needle in the haystack problem in ideone, but I'm getting a SIGSEGV. This is my code: //start #include<cstring> #include<cstdio> ...
1
vote
1answer
124 views

Knuth Morris Pratt Algorithm implementation in Perl

I am trying to implement the Knuth Morris Pratt algorithm in Perl. The following is my code and I referred Mastering Algorithms in Perl First Edition for the algorithm. When I run the code, it prints ...
0
votes
0answers
45 views

KMP failure function calculation

My professor solved the kmp failure function as follows: 1 2 3 4 5 6 7 8 9 a a b a a b a b b 0 1 2 1 2 3 4 5 1 From other texts I checked online, I found out it might be wrong, I went back to ...
0
votes
0answers
124 views

How can Knuth-morris-pratt algorithm be implemented using mapreduce in python?

I have been trying to implement KMP in hadoop using python, But don't know how to split the KMP python program as mapreduce. Can someone please help me ?
3
votes
1answer
96 views

When would you use KMP over BOYER-MOORE

I am currently learning about pattern matching algorithms and have come across these two algorithms. I have the following general ideas: KMP Compares text left-to-right Uses a failure array to ...
1
vote
1answer
233 views

Understanding the Knuth Morris Pratt(KMP) Failure Function

I've been reading the Wikipedia article about the Knuth-Morris-Pratt algorithm and I'm confused about how the values are found in the jump/partial match table. i | 0 1 2 3 4 5 6 W[i] | A ...
0
votes
1answer
205 views

KMP prefix table intuition

The main function that builds the failure/prefix table in KMP as I have seen (in all online resources even in this answer_ is as follows: int j = 0; for (int i = 1; i < pattern.length(); ...
1
vote
1answer
89 views

why do not we shift this way?

While studying Knuth–Morris–Pratt algorithm for a string : ABC ABCDAB ABCDAB for a pattern : ABCDABD I am stuck on one step. I will highlight the step where I am currently stuck. ABC ABCDAB ...
0
votes
2answers
156 views

What is the minimum number of comparisons under best case for KMP Algorithm?

What is the minimum number of comparisons under best case scenario for KMP algorithm ?
0
votes
5answers
138 views

what is the effecient way to search a phrase in mongodb

What is the best way to search a phrase that have words that dont all matches, for example: description = "a cell phone that have an external memory" and i want to search: search = "a good phone" ...
-3
votes
1answer
251 views

how many distinct substrings of string A that don't contain string B as a substring

How can i use the KMP algorithm for finding the number of different substring of string A that don't contain string B as substring ? I used KMP algorithm for some another problem but coudn't find how ...
0
votes
2answers
194 views

Efficient Pattern Matching / String Merging Algorithm

I'm looking for an Algorithm (Preferably with a java implementation) for merging Strings. my problem is as following : suppose I have an Array/List of Strings {"myString1" , "my String1" , ...
1
vote
2answers
1k views

How does the Failure function used in KMP algorithm work?

I've tried my best reading most of the literature on this, and still haven't understood anything about how the failure function used in KMP algorithm is constructed. I've been referring mostly to ...
0
votes
1answer
1k views

Knuth-Morris-Pratt implementation on pure C

I have the next KMP-implementation: #include <stdio.h> #include <stdlib.h> #include <string.h> int kmp(char substr[], char str[]) { int i, j, N, M; N = strlen(str); M = ...
1
vote
3answers
974 views

Java search String(kmp)

I want to search how many occurrences of a string(lets say a) are in a string b. I thought of implementing Knuth-Morris-Pratt Algorithm, but I prefer a built in java function. Is there any function ...
5
votes
4answers
772 views

String pattern matching with one or zero mismatch

Given a string and a pattern to be matched, how efficiently can the matches be found having zero or one mismatch. e.g) S = abbbaaabbbabab P = abab Matches are abbb(index 0),aaab(index 4),abbb(index ...
1
vote
2answers
1k views

Pattern prefix-function computation in Knuth-Morris-Pratt Algorithm

Is there any possibility in the prefix-function of a given pattern to have something like this, 0 0 1 2 3 0 1 2 3 4 5 3 4 5 6 7 0 1 2 In the above prefix function after 4 5 is there only possibility ...
2
votes
1answer
191 views

is there any paper or an explanation on how to implement a two dimensional KMP?

I tried to solve the problem of two dimensional search using a combination of Aho-Corasick and a single dimensional KMP, however, I still need something faster. To elaborate, I have a matrix A of ...
2
votes
3answers
769 views

What's the worst case complexity for KMP when the goal is to find all occurrences of a certain string?

I would also like to know which algorithm has the worst case complexity of all for finding all occurrences of a string in another. Seems like Boyer–Moore's algorithm has a linear time complexity.
-1
votes
1answer
195 views

Detecting Duplicate Codes From A Source Code Using String Matching Algorithm( KMP ) [closed]

I don't know how to implement the algorithm (KMP) to detect a duplicate code or simple clones from a source code ( which is more than 1000 lines ). How to detect the functionality of the codes and ...
6
votes
2answers
933 views

What is the theory behind KMP pattern matching algorithm? [closed]

What is the theoretical basis of KMP pattern-matching algorithm? I understand the algorithm itself, but, don't understand how did Knuth, Morris and Pratt invent this algorithm. Was there any ...
2
votes
3answers
552 views

What are the available string matching algorithms besides Knuth-Morris-Pratt, Rabin-Karp and likes of it?

What are the available string matching algorithms besides Knuth-Morris-Pratt, Rabin-Karp and likes of it?