-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLongestCommonSubsequence.java
50 lines (44 loc) · 1.62 KB
/
LongestCommonSubsequence.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package longest_common_subsequence.java;
import java.util.Arrays;
public class LongestCommonSubsequence {
public static void main(String[] args) {
// Строки
String wordA = "hish";
String wordB = "fish";
// Создать таблицу (двумерный массив)
int[][] cell = new int[wordA.length()][wordB.length()];
for (int i = 0; i < wordA.length(); i++) {
for (int j = 0; j < wordB.length(); j++) {
// Буквы совпадают
if (wordA.charAt(i) == wordB.charAt(j)) {
if (i > 0 && j > 0) {
cell[i][j] = cell[i - 1][j - 1] + 1;
} else {
cell[i][j] = 1;
}
} else {
// Буквы не совпадают
if (i == 0 && j > 0) {
cell[i][j] = cell[i][j - 1];
} else if (i > 0 && j == 0) {
cell[i][j] = cell[i - 1][j];
} else if (i > 0) {
cell[i][j] = Math.max(cell[i - 1][j], cell[i][j - 1]);
} else {
cell[i][j] = 0;
}
}
}
}
printResult(cell);
}
/**
* Печатает массив данных
* @param arr целочисленный двумерный массив
*/
private static void printResult(int[][] arr) {
for (int[] row : arr) {
System.out.println(Arrays.toString(row));
}
}
}