Question: Write a program that takes two character strings (which could be, for example, representations of DNA strands) and computes their edit distance, showing the corresponding
Write a program that takes two character strings (which could be, for example, representations of DNA strands) and computes their edit distance, showing the corresponding pieces.
Data from in Exercise C-12.20
Define the edit distance between two strings X and Y of length n and m, respectively, to be the number of edits that it takes to change X into Y. An edit consists of a character insertion, a character deletion, or a character replacement. For example, the strings "algorithm" and "rhythm" have edit distance 6. Design an O(nm)-time algorithm for computing the edit distance between X and Y.
Step by Step Solution
3.27 Rating (173 Votes )
There are 3 Steps involved in it
The edit distance between algorithm ... View full answer
Get step-by-step solutions from verified subject matter experts
