https://github.com/aavtic/trie
word suggestion algorithm using prefix tree in C.
https://github.com/aavtic/trie
Last synced: 2 months ago
JSON representation
word suggestion algorithm using prefix tree in C.
- Host: GitHub
- URL: https://github.com/aavtic/trie
- Owner: Aavtic
- Created: 2025-04-03T13:30:57.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-04-04T18:07:14.000Z (9 months ago)
- Last Synced: 2025-04-04T19:22:36.120Z (9 months ago)
- Language: C
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Prefix tree for word suggestion.
Create a prefix tree graph.
# Usage
```bash
$make compile
$make run svg
$xdg-open graph.svg
```
An simple auto completion algorithm using prefix tree(trie).
This idea and project was done by [tsoding](https://twitch.tv/tsoding), Which inspired me to do the same. that's all.