A crate implementing a Brukhard Keller tree datastructure which allows for fast querying of "close" matches on discrete distances.
Useful for spell checking based on edit distance and other typical applications.
```rust use bktree::*;
let mut bk = BkTree::new(hammingdistance); bk.insertall(vec![0, 4, 5, 14, 15]);
let (words, dists): (Vec
```rust use bktree::*;
let mut bk = BkTree::new(levenshteindistance);
bk.insertall(vec![
"book", "books", "boo", "boon", "cook", "cake", "cape", "cart",
]);
let (words, dists): (Vec<&str>, Vec