Efficiently-updatable double-array trie in Rust (ported from cedar). This library is tested with reasonably enough of randomized tests, but it is considered as beta since it is not yet tested in high-pressured production environment. Please let me know if you have good use cases to prove its stability.
Add it to your Cargo.toml
:
toml
[dependencies]
cedarwood = "0.4"
then you are good to go. If you are using Rust 2015 you have to extern crate cedarwood
to your crate root as well.
```rust let dict = vec![ "a", "ab", "abc", "アルゴリズム", "データ", "構造", "网", "网球", "网球拍", "中", "中华", "中华人民", "中华人民共和国", ]; let keyvalues: Vec<(&str, i32)> = dict.intoiter().enumerate().map(|(k, s)| (s, k as i32)).collect(); let mut cedar = Cedar::new(); cedar.build(&key_values);
let result: Vec
let result: Vec
let result: Vec
let result: Vec
bash
cargo bench
This work is released under the BSD-2 license, following the original license of C++ cedar. A copy of the license is provided in the LICENSE file.