Edit distance with swaps

5.1k Views Asked by At

Edit distance finds the number of insertion, deletion or substitutions required to one string to another. I want to to also include swaps in this algorithm. For example "apple" and "appel" should give a edit distance of 1.

2

There are 2 best solutions below

1
On

See the algorithm here.

http://www.csse.monash.edu.au/~lloyd/tildeAlgDS/Dynamic/Edit/

You can give different costs for swap, add, deletions.

m[i,j] = min(m[i-1,j-1]
         + if s1[i]=s2[j] then 0 else cost_swap fi,
         m[i-1, j] + cost_insert,
         m[i, j-1] + cost_delete ),  i=1..|s1|, j=1..|s2|
0
On

The edit distance that you are defining is called the Damerau–Levenshtein distance. You can find possible implementations on the Wikipedia page.