c++ Programming Glossary: destination..
Levenshtein Distance: Inferring the edit operations from the matrix http://stackoverflow.com/questions/5849139/levenshtein-distance-inferring-the-edit-operations-from-the-matrix Continue with a a cell Pick the diagonal c r cell as next destination... Note that the new cell is same value as current cell no operation.. Continue with c r cell Pick the diagonal i c cell as next destination... Note that the new cell is one less than current cell therefore.. Continue with i c cell Pick the diagonal l o cell as next destination... Note that the new cell is one less than current cell therefore..
|