Modify 17.3-17.5 to create a Sorted Linked List Class (Dynamic)
Rewrite Dictionary 1.0 using this class instead of an array:
- Write code to create a dictionary of (practically) unlimited size
- Accept the words from a file (ignore punctuation and capitalization)
- Search for each new word.
- If it already exists, print an error
- If it DOES NOT exist, ADD the word to the dictionary and display the number of words currently in the dictionary
- Display the sorted set of words
Hand in a printout of your source code and the results.