This C++ program implements a dictionary using a Binary Search Tree (BST) data structure. It provides functionalities such as dictionary generation, saving and updating, word count, spell checking, and suggesting similar words based on a given input.
Dictionary.h: Header file containing theDictionaryclass declaration.Dictionary.cpp: Source file containing the implementation of theDictionaryclass.BST.h: Header file containing theBSTclass declaration.BST.cpp: Source file containing the implementation of theBSTclass.main.cpp: Main program file demonstrating the usage of the dictionary.
- C++ compiler (e.g., g++)
- Standard C++ libraries
g++ main.cpp Dictionary.cpp BST.cpp -o dictionary