Skip to content

mmohamedkhaled/Dictionary-using-binary-trees

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dictionary Application

Overview

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.

Files

  • Dictionary.h: Header file containing the Dictionary class declaration.
  • Dictionary.cpp: Source file containing the implementation of the Dictionary class.
  • BST.h: Header file containing the BST class declaration.
  • BST.cpp: Source file containing the implementation of the BST class.
  • main.cpp: Main program file demonstrating the usage of the dictionary.

Compilation and Execution

Prerequisites

  • C++ compiler (e.g., g++)
  • Standard C++ libraries

Compilation

g++ main.cpp Dictionary.cpp BST.cpp -o dictionary

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages