A fuzzy matching algorithm in Rust!
In your Cargo.toml add the following:
toml
[dependencies]
fuzzy_matcher = "*"
Here are some code example:
```rust use fuzzymatcher::{fuzzymatch, fuzzy_matcher};
asserteq!(None, fuzzymatch("abc", "abx")); assert!(fuzzymatch("axbycz", "abc").issome()); assert!(fuzzymatch("axbycz", "xyz").issome());
let (score, indices) = fuzzyindices("axbycz", "abc").unwrap(); asserteq!(indices, [0, 2, 4]); ```
fuzzy_match
only return scores while fuzzy_indices
returns the matching
indices as well.echo "axbycz" | cargo run --example "abc"
and check what happens.
O(mn)
where m, n
are the length of the pattern and
input line.O(mn)
for fuzzy_indices
and O(2n)
for
fuzzy_match
which will compress the table for dynamic programming.