Advertisement
aero2146

Longest Common Subsequence

Dec 30th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.56 KB | None | 0 0
  1. class Solution {
  2.     public int longestCommonSubsequence(String text1, String text2) {
  3.         int[][] dp = new int[text1.length()+1][text2.length()+1];
  4.         for (int i = 0; i < text1.length(); i++) {
  5.             for (int j = 0; j < text2.length(); j++) {
  6.                 if (text1.charAt(i) == text2.charAt(j)) {
  7.                     dp[i+1][j+1] = dp[i][j]+1;
  8.                 } else {
  9.                     dp[i+1][j+1] = Math.max(dp[i+1][j], dp[i][j+1]);
  10.                 }
  11.             }
  12.         }
  13.         return dp[text1.length()][text2.length()];
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement