tetengo_trie

Crates.iotetengo_trie
lib.rstetengo_trie
version1.2.4
sourcesrc
created_at2023-03-20 16:47:06.260965
updated_at2024-11-09 07:11:56.734226
descriptionA trie library implemented with a double array
homepagehttps://www.tetengo.org/
repositoryhttps://github.com/tetengo/tetengo.rs
max_upload_size
id815480
size195,496
Kaoru Takeda (kaorut)

documentation

README

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.

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:
    • X:>cd \path\to\your\package
      X:>cargo add tetengo_trie
      
  • On Linux:
    • $ cd /path/to/your/package
      $ cargo add tetengo_trie
      

See the cargo document for details.

Source Files

The source files for this library are available on GitHub.


Copyright (C) 2023-2024 kaoru https://www.tetengo.org/

This product is released under the MIT license. See the LICENSE file for details.

Commit count: 567

cargo fmt