-
Notifications
You must be signed in to change notification settings - Fork 0
/
no of edits.c
51 lines (42 loc) · 1.11 KB
/
no of edits.c
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
#include <stdio.h>
#include <string.h>
#define MAX_LEN 100
int min(int a, int b, int c) {
if (a < b && a < c) {
return a;
} else if (b < c) {
return b;
} else {
return c;
}
}
int edit_distance(char *str1, char *str2) {
int i,j;
int m = strlen(str1);
int n = strlen(str2);
int dp[m+1][n+1];
for ( i = 0; i <= m; i++) {
for ( j = 0; j <= n; j++) {
if (i == 0) {
dp[i][j] = j;
} else if (j == 0) {
dp[i][j] = i;
} else if (str1[i-1] == str2[j-1]) {
dp[i][j] = dp[i-1][j-1];
} else {
dp[i][j] = 1 + min(dp[i][j-1], dp[i-1][j], dp[i-1][j-1]);
}
}
}
return dp[m][n];
}
int main() {
char str1[MAX_LEN], str2[MAX_LEN];
printf("Enter the first string: ");
scanf("%s", str1);
printf("Enter the second string: ");
scanf("%s", str2);
int distance = edit_distance(str1, str2);
printf("Minimum number of edits required: %d\n", distance);
return 0;
}