Spell checker using C
A Spell checker using C.
It takes a file with text (say an essay or a pragraph) as its input. It produces the misspelled words and well as the number of misspelled words as output.
The large dictionary contains upto 144,000 words.
./speller texts/lalaland.txt
./speller dictionaries/large text
./speller dictionaries/small text
Expected output:
MISSPELLED WORDS
[…]
AHHHHHHHHHHHHHHHHHHHHHHHHHHHT
[…]
Shangri
[…]
fianc
[…]
Sebastian’s
[…]
WORDS MISSPELLED:
WORDS IN DICTIONARY:
WORDS IN TEXT:
TIME IN load:
TIME IN check:
TIME IN size:
TIME IN unload:
TIME IN TOTAL:
This was a part of the cs50 computer science course.
Made with ♥ by Chetan Kar.