Created
May 12, 2013 01:09
-
-
Save tivrfoa/5562007 to your computer and use it in GitHub Desktop.
Longest Common Subsequence
http://introcs.cs.princeton.edu/java/96optimization/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /************************************************************************* | |
| * Compilation: javac LCS | |
| * Execution: java LCS < example10.txt | |
| * Dependencies: StdIn.java | |
| * | |
| * Reads in two strings from stdin and computes their longest | |
| * common subsequence. | |
| * | |
| *************************************************************************/ | |
| public class LCS { | |
| public static void main(String[] args) { | |
| String x = StdIn.readString(); | |
| String y = StdIn.readString(); | |
| int M = x.length(); | |
| int N = y.length(); | |
| // opt[i][j] = length of LCS of x[i..M] and y[j..N] | |
| int[][] opt = new int[M+1][N+1]; | |
| // compute length of LCS and all subproblems via dynamic programming | |
| for (int i = M-1; i >= 0; i--) { | |
| for (int j = N-1; j >= 0; j--) { | |
| if (x.charAt(i) == y.charAt(j)) | |
| opt[i][j] = opt[i+1][j+1] + 1; | |
| else | |
| opt[i][j] = Math.max(opt[i+1][j], opt[i][j+1]); | |
| } | |
| } | |
| // recover LCS itself and print it to standard output | |
| int i = 0, j = 0; | |
| while(i < M && j < N) { | |
| if (x.charAt(i) == y.charAt(j)) { | |
| System.out.print(x.charAt(i)); | |
| i++; | |
| j++; | |
| } | |
| else if (opt[i+1][j] >= opt[i][j+1]) i++; | |
| else j++; | |
| } | |
| System.out.println(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment