18 releases

0.2.1 Oct 22, 2020
0.2.0 Jun 27, 2020
0.1.6 Nov 17, 2019
0.1.4 Oct 7, 2018
0.0.1 Mar 20, 2015

#29 in Data structures

Download history 164544/week @ 2023-11-03 157881/week @ 2023-11-10 150201/week @ 2023-11-17 159509/week @ 2023-11-24 156877/week @ 2023-12-01 159694/week @ 2023-12-08 157556/week @ 2023-12-15 106440/week @ 2023-12-22 121919/week @ 2023-12-29 154934/week @ 2024-01-05 168745/week @ 2024-01-12 181944/week @ 2024-01-19 180171/week @ 2024-01-26 181450/week @ 2024-02-02 196157/week @ 2024-02-09 133868/week @ 2024-02-16

723,280 downloads per month
Used in 420 crates (47 directly)

MIT license

255KB
2K SLoC

Rust Radix Trie

Unix Build Status Windows Build Status

This is a Radix Trie implementation in Rust, building on the lessons learnt from TrieMap and Sequence Trie. You can read about my experience implementing this data structure here.

Help Wanted, Enquire Within

Since writing this code I haven't used it in anger (or production) so it is no doubt in need of some maintenance, testing and optimisation love. If you would like to help out, try solving an open issue, optimise something, or just have a poke around! Thanks :)

Features

  • Compressed nodes. Common key prefixes are stored only once.
  • Trie-specific methods to look-up closest ancestors and descendants.
  • Key Generic. Any type that can be serialised as a vector of bytes can be used as a key.
  • Safe - no unsafe code.

Documentation

https://docs.rs/radix_trie/

Usage

Available on Crates.io as radix_trie.

Just add radix_trie to the dependencies section of your Cargo.toml, like so:

radix_trie = "0.2"

Contributors

Made by:

License

MIT License. Copyright © Michael Sproul and contributors 2015-present.

Dependencies