An open API service indexing awesome lists of open source software.

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.

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.