dam_lev

Crates.iodam_lev
lib.rsdam_lev
version0.5.0
created_at2025-03-31 03:59:23.407715+00
updated_at2025-08-23 03:45:04.679506+00
descriptionImplements the Damerau–Levenshtein diff algorithm.
homepage
repositoryhttps://gitlab.com/nickeldan/dam_lev_rust
max_upload_size
id1612999
size14,942
Daniel Walker (nickeldan)

documentation

README

dam_lev implements the Damerau–Levenshtein diff algorithm. That is, it takes two sequences and determines the minimum number of transpositions, substitutions, insertions, and deletions needed to transform the first sequence into the second.

Usage

dam_lev::diff takes two slices of some type T which implements PartialEq and returns a vector of dam_lev::Mutation objects. This is an enum type with four variants corresponding to the four types of transformations. For example,

use dam_lev::Mutation::*;

let seq1 = ['a', 'b', 'c', 'd', 'e', 'f'];
let seq2 = ['b', 'c', 'e', 'd', 'x', 'y'];
let diffs = dam_lev::diff(&seq1, &seq2);
assert_eq!(diffs, vec![Deletion(0), Transposition(3), Substitution(5, 4), Insertion(6, 5)]);

We see that the sequence of transformations is

  • Delete the item at index 0 ('a').
  • Transpose the item at index 3 ('d') with its successor.
  • Substitute the item at index 5 ('f') with the item from the second sequence at index 4 ('x').
  • Insert at index 6 the item from the second sequence at index 5 ('y').

Note the index for the transposition. Even though, after the deletion, the 'd' is at index 2, it's at index 3 in the original version of the sequence. Likewise for the successive mutations.

Compare function

If you want to customize how the items are compared, you can use diff_with_compare:

let seq1 = [1, 2, 3];
let seq2 = [91, 92, 93];
let compare = |num1: &u32, num2: &u32| num1 % 3 == num2 % 3;
let diffs = dam_lev::diff_with_compare(&seq1, &seq2, compare);
assert_eq!(diffs.len(), 0);

In this case, the items need not implement PartialEq but compare must be of type FnMut(&T, &T) -> bool.

Commit count: 9

cargo fmt