https://github.com/jdsherbert/trie
Simple Trie Structure implementation in C++
https://github.com/jdsherbert/trie
cpp trie trie-data-structure trie-structure tries
Last synced: 6 months ago
JSON representation
Simple Trie Structure implementation in C++
- Host: GitHub
- URL: https://github.com/jdsherbert/trie
- Owner: JDSherbert
- License: mit
- Created: 2023-12-29T00:48:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-30T20:59:20.000Z (almost 2 years ago)
- Last Synced: 2025-02-13T22:38:12.880Z (8 months ago)
- Topics: cpp, trie, trie-data-structure, trie-structure, tries
- Language: C++
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Trie Implementation
-----------------------------------------------------------------------
![]()
-----------------------------------------------------------------------
## OverviewA Trie is a tree-like data structure used to store a dynamic set or associative array where the keys are usually strings. The term "trie" comes from the word "retrieval," and the structure is sometimes called a "prefix tree" because it can efficiently store and retrieve keys based on their prefixes.
-----------------------------------------------------------------------