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.
- Host: GitHub
- URL: https://github.com/massigy/c-dictionnary-program
- Owner: MassiGy
- Created: 2022-10-14T12:52:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-13T10:20:46.000Z (over 3 years ago)
- Last Synced: 2025-11-08T04:08:03.090Z (7 months ago)
- Topics: c, cprogramming, data-structures, gcc, git, github, linked-list, makefile
- Language: C
- Homepage:
- Size: 146 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```