-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLeetCode_00072.java
More file actions
26 lines (24 loc) · 875 Bytes
/
LeetCode_00072.java
File metadata and controls
26 lines (24 loc) · 875 Bytes
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
package com.github.jerring.leetcode;
public class LeetCode_00072 {
public int minDistance(String word1, String word2) {
int m = word1.length();
int n = word2.length();
int[][] f = new int[m + 1][n + 1];
for (int i = 0; i <= m; ++i) {
f[i][0] = i; // 只能删除
}
for (int i = 0; i <= n; ++i) {
f[0][i] = i; // 只能插入
}
for (int i = 1; i <= m; ++i) {
for (int j = 1; j <= n; ++j) {
if (word1.charAt(i - 1) == word2.charAt(j - 1)) {
f[i][j] = f[i - 1][j - 1];
} else { // 插入、删除、替换三者取最小值
f[i][j] = 1 + Math.min(f[i][j - 1], Math.min(f[i - 1][j], f[i - 1][j - 1]));
}
}
}
return f[m][n];
}
}