Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 708 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 708 Bytes

SMR

This library aims to implement various string metrics, such as basic ones like Levenshtein and Hamming distances, and then more complicated ones.

DISCLAIMER : It's a personnal implementation, do not have any particular expectation. This is just a cool way for me to learn Rust. However, I will always try to do my best to stick to original papers and/or existing/documented algorithms.

Here is a listing of all the currently implemented or planned string metrics :

  • Hamming distance
  • Levenshtein distance
  • Damerau-Levenshtein distance
    • Berghel and Roach algorithm
    • Ukkonen algorithm
    • ... (todo)
  • Other string metrics (still don't really know wich ones)