AlexDev

Join the Gang Gang and have the latest AI and Tech content.

Home page View on GitHub

Autocomplete in C

Posted on 2 July 2024.
c data structures algorithms

About

Simple autocompelte tool in C. You will need a words file to use with this autocompelte tool.

For example you can use nltk with Python.

pip install nltk
python -c "import nltk; nltk.download('words')"
cp ~/nltk_data/corpora/words/en words.txt

Quickstart

gcc main.c -o main
./main -f words.txt

Conclusion