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

https://github.com/massigy/c-dictionnary-program

This C program, loads a file of 10000 english words to a trie data structure and search for the right spelling when the user types a word of his own.
https://github.com/massigy/c-dictionnary-program

c cprogramming data-structures gcc git github linked-list makefile

Last synced: 26 days ago
JSON representation

This C program, loads a file of 10000 english words to a trie data structure and search for the right spelling when the user types a word of his own.

Awesome Lists containing this project

README

          

# C-dictionnary-program

This C program, loads a file of 10000 english words to a trie data structure and search for the right spelling when the user types a word of his own.

# File Structure

```BASH

.
├── headers
│ ├── main.h
│ ├── singleLinkedLists.h
│ ├── stringManipulation.h
│ ├── sys_headers.h
│ └── tries.h
├── README.md
├── ressources
│ └── words.txt
└── src
├── build
│ ├── main.d
│ ├── main.o
│ ├── singleLinkedLists.d
│ ├── singleLinkedLists.o
│ ├── stringManipulation.d
│ ├── stringManipulation.o
│ ├── tries.d
│ └── tries.o
├── main
├── main.c
├── Makefile
├── singleLinkedLists.c
├── stringManipulation.c
└── tries.c

4 directories, 21 files

```