Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/atticusth7/trieautocompletion

Using a Trie data structure to store and access an extensive dictionary, this program quickly suggests auto completed words.
https://github.com/atticusth7/trieautocompletion

Last synced: about 2 months ago
JSON representation

Using a Trie data structure to store and access an extensive dictionary, this program quickly suggests auto completed words.

Awesome Lists containing this project

README

        

# TrieAutoCompletion
Using a Trie data structure to store and access an extensive dictionary, this C++ program quickly suggests completed words when input is not a valid word.

**Word found but can be used as prefix for other words**
input: Test

![image](https://github.com/user-attachments/assets/e05281ed-013f-4ab7-b8d3-2fa1ad8b5607)
![image](https://github.com/user-attachments/assets/a6d4de0c-b26d-419c-a413-d71c981dfbd0)

**Word not found auto suggest completions**
input: proj
![image](https://github.com/user-attachments/assets/f7d356da-15f3-4daf-8f07-627c125c24f5)

**Multiple words seperated by whitespace**
input: hello world

![image](https://github.com/user-attachments/assets/766e3b21-119c-4f8c-b948-54760c93523d)