#trie #collection #tree-hash #hash #tree

sequence_trie

Trie-like data-structure for storing sequences of values

23 releases

Uses old Rust 2015

0.3.6 Oct 30, 2018
0.3.5 Sep 9, 2017
0.3.4 Jul 31, 2017
0.3.0 Feb 14, 2017
0.0.2 Nov 21, 2014

#8 in #tree-hash

Download history 6911/week @ 2023-12-01 6407/week @ 2023-12-08 5573/week @ 2023-12-15 2455/week @ 2023-12-22 3501/week @ 2023-12-29 4906/week @ 2024-01-05 10697/week @ 2024-01-12 8462/week @ 2024-01-19 6748/week @ 2024-01-26 7202/week @ 2024-02-02 8386/week @ 2024-02-09 6885/week @ 2024-02-16 7251/week @ 2024-02-23 7779/week @ 2024-03-01 9581/week @ 2024-03-08 9773/week @ 2024-03-15

35,570 downloads per month
Used in 48 crates (9 directly)

MIT/Apache

33KB
677 lines

Sequence Trie

Build Status

This is a generic Trie implementation that uses a hash map to store child nodes. The Trie is keyed by lists of type K, which can be anything implementing PartialEq, Eq, Hash and Clone. If your keys are explicit lists and you want to be able to store a different value for each element of a key, this might be the data structure for you!

For more information, see the API documentation.

Usage

Add sequence_trie to your Cargo.toml.

[dependencies]
sequence_trie = "*"

See Also

  • Radix Trie – a trie operating on byte-strings, with better performance and a less ergonomic API.

License

Licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~180KB