-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit_distance.dart
More file actions
39 lines (33 loc) · 824 Bytes
/
Copy pathedit_distance.dart
File metadata and controls
39 lines (33 loc) · 824 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
27
28
29
30
31
32
33
34
35
36
37
38
39
import 'dart:math';
// https://leetcode.com/problems/edit-distance/
class EditDistance {
int minDistance(String word1, String word2) {
final m = word1.length;
final n = word2.length;
final dp = List.generate(m + 1, (_) => List.filled(n + 1, 0));
for (var i = 0; i <= m; i++) {
dp[i][0] = i;
}
for (var j = 0; j <= n; j++) {
dp[0][j] = j;
}
for (var i = 1; i <= m; i++) {
for (var j = 1; j <= n; j++) {
if (word1[i - 1] == word2[j - 1]) {
dp[i][j] = dp[i - 1][j - 1];
} else {
dp[i][j] =
1 +
min(
dp[i - 1][j],
min(
dp[i][j - 1],
dp[i - 1][j - 1],
),
);
}
}
}
return dp[m][n];
}
}