Crates.io | generic_levenshtein |
lib.rs | generic_levenshtein |
version | 0.2.0 |
source | src |
created_at | 2019-12-15 18:17:45.861281 |
updated_at | 2019-12-24 09:08:31.402297 |
description | Generic and fast implementation of the Levenshtein distance |
homepage | https://bitbucket.org/jmb/rust_generic_levenshtein |
repository | |
max_upload_size | |
id | 189585 |
size | 14,720 |
A generic and fast implementation of the Levenshtein distance.
This crate can work on slices of any kind. It can therefore:
assert_eq!(distance ("abc", "aaxcc"), 3);
assert_eq!(
distance (
"The quick brown fox".split (' ').collect::<Vec<_>>(),
"The very quick brown cat".split (' ').collect()),
2);
assert_eq!(distance (vec![1, 2, 3], vec![0, 1, 3, 3, 4]), 3);
At the time of writing, this crate is the fastest on crates.io when
working with text (on par with eddie
):
Identical | Same length | Different lengths | |
---|---|---|---|
generic_levenshtein | 3 | 9_616 | 11_010 |
levenshtein v1.0.4 | 4 | 11_030 | 12_777 |
strsim v0.9.2 | 9_173 | 10_100 | 11_738 |
distance v0.4.0 | 23_594 | 13_800 | 26_890 |
eddie v0.3.2 | 215 | 7_464 | 11_968 |
txtdist v0.2.1 | 17_732 | 17_635 | 20_975 |
All times in ns
on an Intel(R) Core(TM) i5-4300M CPU @ 2.60GHz
.