11#include "cache.h"
22#include "levenshtein.h"
33
4+ /*
5+ * This function implements the Damerau-Levenshtein algorithm to
6+ * calculate a distance between strings.
7+ *
8+ * Basically, it says how many letters need to be swapped, substituted,
9+ * deleted from, or added to string1, at least, to get string2.
10+ *
11+ * The idea is to build a distance matrix for the substrings of both
12+ * strings. To avoid a large space complexity, only the last three rows
13+ * are kept in memory (if swaps had the same or higher cost as one deletion
14+ * plus one insertion, only two rows would be needed).
15+ *
16+ * At any stage, "i + 1" denotes the length of the current substring of
17+ * string1 that the distance is calculated for.
18+ *
19+ * row2 holds the current row, row1 the previous row (i.e. for the substring
20+ * of string1 of length "i"), and row0 the row before that.
21+ *
22+ * In other words, at the start of the big loop, row2[j + 1] contains the
23+ * Damerau-Levenshtein distance between the substring of string1 of length
24+ * "i" and the substring of string2 of length "j + 1".
25+ *
26+ * All the big loop does is determine the partial minimum-cost paths.
27+ *
28+ * It does so by calculating the costs of the path ending in characters
29+ * i (in string1) and j (in string2), respectively, given that the last
30+ * operation is a substition, a swap, a deletion, or an insertion.
31+ *
32+ * This implementation allows the costs to be weighted:
33+ *
34+ * - w (as in "sWap")
35+ * - s (as in "Substitution")
36+ * - a (for insertion, AKA "Add")
37+ * - d (as in "Deletion")
38+ *
39+ * Note that this algorithm calculates a distance _iff_ d == a.
40+ */
441int levenshtein (const char * string1 , const char * string2 ,
542 int w , int s , int a , int d )
643{
@@ -25,7 +62,7 @@ int levenshtein(const char *string1, const char *string2,
2562 row2 [j + 1 ] > row0 [j - 1 ] + w )
2663 row2 [j + 1 ] = row0 [j - 1 ] + w ;
2764 /* deletion */
28- if (j + 1 < len2 && row2 [j + 1 ] > row1 [j + 1 ] + d )
65+ if (row2 [j + 1 ] > row1 [j + 1 ] + d )
2966 row2 [j + 1 ] = row1 [j + 1 ] + d ;
3067 /* insertion */
3168 if (row2 [j + 1 ] > row2 [j ] + a )
0 commit comments