1 个不稳定版本
使用旧的Rust 2015
0.2.0 | 2018年8月22日 |
---|
#1812 in 文本处理
548 每月下载量
7KB
97 行
Simhash for Rust
Simhash算法(由Moses Charikar 开发)在Rust中实现。它生成64位simhash并可以使用汉明距离来计算相似度。
要使用simhash,请将以下行添加到您的Cargo.toml
文件中。
[dependencies.simhash]
version = "0.2"
现在您可以通过将simhash添加为外部crate来在项目中使用它。
extern crate simhash;
fn main() {
let h: u64 = simhash::hash("The cat sat on the mat");
println!("{}", h);
}
依赖项
~19KB