forked from moranzcw/LeetCode-NOTES
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolution.cpp
More file actions
29 lines (24 loc) · 727 Bytes
/
solution.cpp
File metadata and controls
29 lines (24 loc) · 727 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
class Solution
{
public:
int minDistance(string word1, string word2)
{
int row = word1.length() + 1;
int col = word2.length() + 1;
vector<vector<int> > f(row, vector<int>(col));
for (int i = 0; i < row; i++)
f[i][0] = i;
for (int i = 0; i < col; i++)
f[0][i] = i;
for (int i = 1; i < row; i++)
for (int j = 1; j < col; j++)
{
if (word1[i-1] == word2[j-1])
f[i][j] = f[i-1][j-1];
else
f[i][j] = f[i-1][j-1] + 1;
f[i][j] = min(f[i][j], min(f[i-1][j]+1, f[i][j-1]+1));
}
return f[row-1][col-1];
}
};