-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditdistance.cpp
More file actions
35 lines (35 loc) · 965 Bytes
/
editdistance.cpp
File metadata and controls
35 lines (35 loc) · 965 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
class Solution {
public:
int minDistance(string word1, string word2) {
int len1 = word1.length();
int len2 = word2.length();
if (len1 == 0 || len2 == 0)
{
return len1 + len2;
}
vector<vector<int>>ret(len1+1, vector<int>(len2+1, 0));
for (int i = 0; i <= len2; i++)
{
ret[0][i] = i;
}
for (int i = 0; i <= len1; i++)
{
ret[i][0] = i;
}
for (int i = 1; i <= len1; i++)
{
for (int j = 1; j <= len2; j++)
{
if (word1[i-1] == word2[j-1])
{
ret[i][j] = ret[i - 1][j - 1];
}
else
{
ret[i][j] = min(min(ret[i - 1][j], ret[i][j - 1]), ret[i - 1][j - 1]) + 1;;
}
}
}
return ret[len1][len2];
}
};