I need to create a spell checker with hashing. So far I pretty much made a hash table with linked lists but don't really know how to 'Mod' strings.
The code below is my Dictionary class which takes in a .txt file that is a
word bank. with single alphabet letters before the start of the words with that letter.
ex.
a
airplain
apple
astronaut
b
ball
big
bunny
c
cat
cow
etc.....
Then i have a scan class in which i attempt to go through the linked lists and try to identify the strings. I don't even know :P
How would i check words for misspellings and compare them to the dictionary then provide options for the user to change the words?
Any help is very appreciative
also i forgot to include the OpenFile method which opens a short .txt
doc that is misspelled.