/trie

A basic Elixir implementation of the Trie data structure

Primary LanguageElixirMIT LicenseMIT

Summary

This module contains the type and functions to work with a Trie (tree data structure).

Generate the documentation by running mix docs and visit doc/index.html. The most relevant documentation is at the top of the Trie module.

Testing plus coverage report: mix test --cover. The coverage info is located in cover/modules.html

TODO

  • Improve documentation on how can the Trie be traversed via the Access module.