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.
Edit distance with swaps
5.1k Views Asked by Raja Roy At
2
There are 2 best solutions below
0

The edit distance that you are defining is called the Damerau–Levenshtein distance. You can find possible implementations on the Wikipedia page.
See the algorithm here.
http://www.csse.monash.edu.au/~lloyd/tildeAlgDS/Dynamic/Edit/
You can give different costs for swap, add, deletions.