-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminEditDistance.cpp
More file actions
51 lines (29 loc) · 881 Bytes
/
minEditDistance.cpp
File metadata and controls
51 lines (29 loc) · 881 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
40
41
42
43
44
45
46
47
#include<iostream>
#include<vector>
using namespace std;
int levenchstein(const string &s1,const string &s2){
vector< vector<int> > dp(s1.size()+1, vector<int>(s2.size()+1));
for(int i =0; i < dp.size(); i++){
for(int j =0; j < dp[0].size(); j++){
if(j == 0) dp[i][j] = i;
else if(i == 0) dp[i][j] = j;
else if(s1[i-1] == s2[j-1]){
dp[i][j] = dp[i-1][j-1];
}
else dp[i][j] = 1 + min( min(dp[i][j-1], dp[i-1][j]), dp[i-1][j-1] );
}
}
for(int i =0; i < dp.size(); i++){
for(int j =0; j < dp[0].size(); j++){
cout << dp[i][j] << " ";
}
cout << endl;
}
return dp[dp.size()-1][dp[0].size()-1];
}
int main(){
string s1,s2;
cin >> s1 >> s2;
cout << levenchstein(s1, s2) << endl;
return 0;
}