-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathEditDistance.java
42 lines (34 loc) · 1.23 KB
/
EditDistance.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
// https://leetcode.com/problems/edit-distance
// T: O(m * n)
// S: O(m * n)
public class EditDistance {
public int minDistance(String word1, String word2) {
if (word1.isEmpty()) return word2.length();
if (word2.isEmpty()) return word1.length();
final int rows = word1.length() + 1, columns = word2.length() + 1;
final int[][] dp = new int[rows][columns];
dp[0][0] = 0;
// first row
for (int column = 1 ; column < columns ; column++) {
dp[0][column] = column;
}
// first column
for (int row = 1 ; row < rows ; row++) {
dp[row][0] = row;
}
// rest of table
for (int row = 1 ; row < rows ; row++) {
for (int column = 1 ; column < columns ; column++) {
if (word1.charAt(row - 1) == word2.charAt(column - 1)) {
dp[row][column] = dp[row - 1][column - 1];
} else {
dp[row][column] = min(dp[row - 1][column - 1], dp[row - 1][column], dp[row][column - 1]) + 1;
}
}
}
return dp[rows - 1][columns - 1];
}
private int min(int a, int b, int c) {
return Math.min(Math.min(a, b), c);
}
}