Chapter 6: Q8E (page 193)
Given two strings and , we wish to find the length of their longest common substring, that is, the largest k for which there are indices i and j with . Show how to do this in time
Short Answer
There are two approach of doing this problem:
1. Brute Force Method
Here, we will consider all the substring of string x=x1x2….xn and check if how many of those possible substring of x can be found in string y=y1y2….ym.
And also keeping track of maximum length of common substring.
But in this case, the run time is much greater then O(mn).
2. Dynamic Algorithm Method
Here simultaneously we will find the longest suffix string pattern of both string and store them in a table. This will reduce the function call and hence our runtime will be O(mn).