forked from wisdompeak/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path072.Edit-Distance.cpp
82 lines (69 loc) · 2.41 KB
/
072.Edit-Distance.cpp
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
class Solution {
public:
int minDistance(string word1, string word2)
{
int n1=word1.size();
int n2=word2.size();
word1.insert(word1.begin(),'0');
word2.insert(word2.begin(),'0');
auto dp=vector<vector<int>>(n1+1,vector<int>(n2+1,INT_MAX));
dp[0][0]=0;
for (int i=1; i<=n1; i++)
dp[i][0]=i;
for (int j=1; j<=n2; j++)
dp[0][j]=j;
for (int i=1; i<=n1; i++)
for (int j=1; j<=n2; j++)
{
if (word1[i]==word2[j])
dp[i][j]=dp[i-1][j-1];
else
{
dp[i][j]=min(dp[i][j],dp[i-1][j]+1);
dp[i][j]=min(dp[i][j],dp[i][j-1]+1);
dp[i][j]=min(dp[i][j],dp[i-1][j-1]+1);
}
}
return dp[n1][n2];
}
/**
* @brief calculate the minimum edit distance between word1 and word2
* Another implementation of edit distance with compressed memory usage
* @param word1 const std::string & The reference of first string
* @param word2 const std::string & The reference of second string
* @return The edit distance
*/
int minDistance2(const std::string &word1, const std::string &word2)
{
int n1=word1.size();
int n2=word2.size();
// dp[i][j] : edit distance between word1[0, i) and word2[0, j)
// dp[i][j] = std::min(dp[i-1][j], dp[i][j-1], dp[i-1][j-1]) + 1
// ---------- ---------- -------------
// add-j delete-j replace-j
// if word1[i] != word2[j]
// Compressed to
// dp[j]
std::vector<int> dp(n2+1, 0);
for (auto j = 1; j <= n2; ++j)
dp[j] = j; // distance between word1[0, 0) and word2[0, j), j deletions
for (auto i = 1; i <= n1; ++i)
{
int topleft = dp[0];
// reset dp[i]
dp[0] = i; // edit distance = j add operations
for (auto j = 1; j <= n2; ++j)
{
int top = dp[j];
if (word1[i-1] == word2[j-1])
dp[j] = topleft;
else
dp[j] = std::min({dp[j-1], top, topleft}) + 1;
// -------- --- ---------
// delete-j add-j replace-j
topleft = top; // move the top 1 step to the right
}
}
return dp.back();
}
};