tetengo Trie 1.2.4 ================== A trie library. The trie is an associative data structure. Given a key, it returns the corresponding value in constant time. It also supports prefix searches, allowing you to enumerate values with the same prefix. The trie in this library is implemented using double arrays. - [Detailed description](https://docs.rs/tetengo_trie/1.2.4/tetengo_trie/) How to Use ---------- Execute the `cargo add` command to add the "tetengo_trie" library to your cargo package. An entry for "tetengo_trie" will be added to the "dependencies" section of Cargo.toml. - On Windows: - ```bat X:>cd \path\to\your\package X:>cargo add tetengo_trie ``` - On Linux: - ```shell-session $ cd /path/to/your/package $ cargo add tetengo_trie ``` See [the cargo document](https://doc.rust-lang.org/cargo/commands/cargo-add.html) for details. Source Files ------------ The source files for this library are available on GitHub. - [https://github.com/tetengo/tetengo.rs](https://github.com/tetengo/tetengo.rs) --- Copyright (C) 2023-2024 kaoru This product is released under the MIT license. See [the LICENSE file](https://github.com/tetengo/tetengo.rs/blob/main/LICENSE) for details.