标签:++ include algo ane ret 字符串 bbb 操作 char
第1行:字符串a(a的长度 <= 1000)。 第2行:字符串b(b的长度 <= 1000)。
输出a和b的编辑距离
kitten sitting
3
dp[i][j]表示字符串a中i个字符变换到字符串b中j个字符的编辑距离
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; char s1[1010],s2[1010]; int dp[1010][1010]; int main() { scanf("%s%s",s1,s2); int n=strlen(s1),m=strlen(s2); for(int i=0;i<1010;i++) dp[0][i] = dp[i][0] = i; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { dp[i][j] = min(dp[i-1][j]+1,min(dp[i][j-1]+1, dp[i-1][j-1] + (s1[i-1]!=s2[j-1]) )); //printf("%d ",dp[i][j]); } //printf("\n"); } printf("%d\n",dp[n][m]); return 0; }
标签:++ include algo ane ret 字符串 bbb 操作 char
原文地址:http://www.cnblogs.com/cdyboke/p/7856846.html