Problem Description
Given two strings text1 and text2, return the length of their longest common subsequence. If there is no common subsequence, return 0. A subsequence of a string is a new string generated from the original string with some characters deleted without changing the relative order of the remaining characters.
Key Insights
- A common subsequence is a sequence that appears in both strings in the same order.
- The problem can be solved using dynamic programming to build a 2D table that tracks the lengths of common subsequences.
- The solution involves comparing characters of both strings and updating the table based on matches or mismatches.
Space and Time Complexity
Time Complexity: O(m * n), where m and n are the lengths of text1 and text2, respectively.
Space Complexity: O(m * n) for the DP table.
Solution
To solve the problem, we can use a dynamic programming approach. We create a 2D array (table) where dp[i][j]
represents the length of the longest common subsequence of the first i
characters of text1
and the first j
characters of text2
.
- Initialize a table with dimensions (m+1) x (n+1) filled with zeros, where m and n are the lengths of
text1
andtext2
. - Iterate through each character of both strings.
- If the characters match, update the table at
dp[i][j]
to be1 + dp[i-1][j-1]
. - If the characters do not match, update the table at
dp[i][j]
to be the maximum ofdp[i-1][j]
anddp[i][j-1]
. - The value in the bottom-right cell of the table (
dp[m][n]
) will give the length of the longest common subsequence.