In search of green cells

In search of green cells

The string matching problem also known as ?the needle in a haystack? is one of the classics. This simple problem has a lot of application in the areas of Information Security, Pattern Recognition, Document Matching, Bioinformatics (DNA matching) among others. Finding a linear time algorithm was a challenge, then came Donald Knuth and Vaughan Pratt conceiving a linear time solution in 1970 by thoroughly analyzing the naive approach. It was also independently discovered by James Morris in the same year. The three published the paper jointly in 1977 and from that point on it is known as the Knuth-Morris-Pratt aka KMP Algorithm.

The approach I follow is I start with the basics then keep building on it till we reach the most optimized solution. I will use Python for code snippets as it?s very much concise and readable.

Problem statement:To Find the occurrences of a word W within a main text T.

One naive way to solve this problem would be to compare each character of W with T. Every time there is a mismatch, we shift W to the right by 1, then we start comparing again. Let?s do it with an example:

T: DoYouSeeADogHere (it will be a case insensitive search for all examples) W: dog

Image for post

Time complexity of this naive approach is O(mn), where m and n are length of the word W and the text T respectively. Let?s see how can we make it better. Take another wacky example with all unique characters in W.

T: duceDuckW: duck

Image for post

As you can see in the above image, there is a mismatch at index 3. According to naive approach next step would be to shift W by 1. Since all letters in W are different, we can actually shift W by the index where mismatch occurred (3 in this case). We can say for sure there won?t be any match in between. I would recommend to try with some other similar example and check for yourself.

The idea is to find out how much to shift the word W when there is a mismatch. So far we have optimised the approach only for a special case where all characters in W are unique. Let?s take another bizarre example. This one is gonna be little tricky so brace yourself.

T: deadElephantW: deadEye

Image for post

Make sure you understand what green cells convey. I will be using a lot of them. In the above image the green cells in the left substring is equal to the green cells in the right substring. It is actually the largest prefix which is also equal to the suffix of the substring till index 4 of the word ?deadeye?. Assume for now we have found it somehow, we will work on finding out largest prefix(green cells) later. Now let?s see how it works by taking an abstract example.

Image for post

str1 = str2 (green cells) and str2 = str3. When there is a mismatch after str2, we can directly shift the word till after str1 as you can see in the image. Green cells actually tell us the index from where it should start comparing next, if there is a mismatch.

I suppose you now understand if we find out green cells for every prefix of the word W, we can skip few unnecessary matches and increase the efficiency of our algorithm. This is actually the idea behind knuth-Morris-Pratt(kmp) algorithm.

We will be using aux array to store the index. Unlike Naive algorithm, where we shift the word W by one and compare all characters at each shift, we use a value from aux to decide the next characters to be matched. No need to match characters that we know will match anyway. Let?s take yet another weird example.

W: acabacacd

Image for post

m and `i` define the state of our algorithm and signify that prefix of the word W before m is equal to the suffix for the substring till i-1 i.e `W[0?m-1] = W[i-m?i-1]`. For the above image state, 2(value of `m`) is stored in the aux array for the substring till index 4(`i-1`).

Following will be the aux array for the word acabacacd

Image for post

Now let?s use the above aux array to search the word acabacacd in the following text.

T: acfacabacabacacdk

Below is the snapshot of above code at some intermediate running state.

Image for post

You just nailed Knuth-Morris-Pratt algorithm.

One last thing?

If you have any suggestion on how I can improve then please do share in the comments and don?t forget to applaud and have a great day ??

13

No Responses

Write a response