What is Longest Common Subsequence(LCS)? Following is detailed algorithm to print the LCS. It uses the same 2D table L[][]. Construct L[m+1][n+1] . The value L[m][n] contains length of LCS. Create a ...