Chapter 6: Q11E (page 193)
Given two strings and , we wish to find the length of their longest common subsequence, that is, the largest k for which there are indices and with . Show how to do this in time .
Short Answer
There are two approaches to doing this problem:
1. Brute Force Method
Here, we will consider all the substring of stringand check if how many of those possible substrings of x can be found in string.
And also keeping track of maximum length of common substring.
But in this case, the run time is much greater then.
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 .