| Student: | Shiri Azenkot |
| School: | Pomona College |
| Email: |
shiri.azenkot@pomona.edu
shiriaz@dimax.rutgers.edu |
| Project Name: | String Edit Distance with Moves |
| Research Advisor: |
Dr. Graham Cormode, DIMACS Postdoc
Rutgers University |
Problem DescriptionGiven two strings x and y, the edit distance, d(x, y), is the smallest number of operations required to turn one string into the other. Allowed operations are inserting a character, deleting a character, or replacing a character. Example:
x = abcdef = defabc
One way to turn x into y in six operation is to first delete the characters
d, e, and f with three operations. Next, insert each of them at the
beginning of the string, using another three operations.
|