radix_trie 0.0.3

Generic radix trie data-structure.
Documentation

Rust Radix Trie

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.

Features

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

Usage

Available on Crates.io as radix_trie.

[dependencies]
radix_trie = "*"

Documentation

https://michaelsproul.github.io/rust_radix_trie/

To Do

  • Optimise (make a NibbleSlice, see paper).
  • QuickCheck tests.
  • Successor methods?
  • Implement the Entry API?

License

MIT License. Copyright (c) Michael Sproul 2015.