###BTree spell checking ⋅⋅⋅by Roisin McLoughlin ⋅⋅⋅rem99 at georgetown dot edu ⋅⋅⋅Last Modified 11/15/16
Spell checks a file against a dictionary file. Removes specified words from the dictionary file.
g++ LinkedList.cpp BTree.h main.cpp [inputFile] [dictionaryFile] [removalFile]
arguements:
inputFile
- Text file to be spell checkeddictionaryFile
- Text file containing a lexiconremovalFile
- Text file containing words to remove from the dictionary
The B-Tree is implementated using a template class to determine the number of children nodes that the parent node points to. A linked list is implemented to provide runtime comparison with the B-Tree implementation.