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 theDictionary
class declaration.Dictionary.cpp
: Source file containing the implementation of theDictionary
class.BST.h
: Header file containing theBST
class declaration.BST.cpp
: Source file containing the implementation of theBST
class.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