11 releases

0.3.7 Oct 4, 2020
0.3.6 Oct 3, 2020
0.3.5 Jul 5, 2020
0.3.4 Feb 23, 2020
0.1.0 Mar 2, 2019

#29 in Text processing

Download history 31339/week @ 2024-03-14 35329/week @ 2024-03-21 34188/week @ 2024-03-28 35010/week @ 2024-04-04 38720/week @ 2024-04-11 36404/week @ 2024-04-18 35786/week @ 2024-04-25 40732/week @ 2024-05-02 37925/week @ 2024-05-09 39706/week @ 2024-05-16 38630/week @ 2024-05-23 37760/week @ 2024-05-30 38648/week @ 2024-06-06 40969/week @ 2024-06-13 39566/week @ 2024-06-20 33674/week @ 2024-06-27

159,654 downloads per month
Used in 399 crates (118 directly)

MIT license

67KB
1.5K SLoC

Crates.io

Fuzzy Matcher

Fuzzy matching algorithm(s) in Rust!

Usage

In your Cargo.toml add the following:

[dependencies]
fuzzy-matcher = "*"

Here are some code example:

use fuzzy_matcher::FuzzyMatcher;
use fuzzy_matcher::skim::SkimMatcherV2;

let matcher = SkimMatcherV2::default();
assert_eq!(None, matcher.fuzzy_match("abc", "abx"));
assert!(matcher.fuzzy_match("axbycz", "abc").is_some());
assert!(matcher.fuzzy_match("axbycz", "xyz").is_some());

let (score, indices) = matcher.fuzzy_indices("axbycz", "abc").unwrap();
assert_eq!(indices, [0, 2, 4]);
  • fuzzy_match only return scores while fuzzy_indices returns the matching indices as well.
  • Both function return None if the pattern won't match.
  • The score is the higher the better.

More example

echo "axbycz" | cargo run --example fz "abc" and check what happens.

About the Algorithm

Skim

The skim is currently used by skim, a fuzzy finder.

Skim V2

  • Just like fzf v2, the algorithm is based on Smith-Waterman algorithm which is normally used in DNA sequence alignment
  • Also checkout https://www.cs.cmu.edu/~ckingsf/bioinfo-lectures/gaps.pdf for more details
  • The time complexity is O(mn) where m, n are the length of the pattern and input line.
  • Space complexity is O(mn) for fuzzy_indices and O(2n) for fuzzy_match which will compress the table for dynamic programming.
  • V2 matcher has an option to set the max element of the score matrix, if m*n exceeded the limit, it will fallback to a linear search.

Skim V1

Clangd

  • The algorithm is based on clangd's FuzzyMatch.cpp.
  • Also checkout https://github.com/lewang/flx/issues/98 for some variants.
  • The algorithm is O(mn) where m, n are the length of the pattern and input line.
  • Space complexity is O(mn) for fuzzy_indices and O(2n) for fuzzy_match which will compress the table for dynamic programming.

Dependencies

~87KB