https://github.com/pprattis/English-Greek-dictionary-with-binary-search-tree
A program that implements an English-Greek dictionary using binary trees. Each node of the tree will contain the word in English and the corresponding translation in Greek. The search for the tree will be based on the word in English. The program can perform the basic search, import, delete operations.
https://github.com/pprattis/English-Greek-dictionary-with-binary-search-tree
binary-search-tree binary-tree cpp dictionary exercise node program student
Last synced: 9 months ago
JSON representation
A program that implements an English-Greek dictionary using binary trees. Each node of the tree will contain the word in English and the corresponding translation in Greek. The search for the tree will be based on the word in English. The program can perform the basic search, import, delete operations.
- Host: GitHub
- URL: https://github.com/pprattis/English-Greek-dictionary-with-binary-search-tree
- Owner: pprattis
- License: mit
- Created: 2020-01-06T13:51:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T14:11:03.000Z (over 6 years ago)
- Last Synced: 2025-07-13T17:43:29.444Z (12 months ago)
- Topics: binary-search-tree, binary-tree, cpp, dictionary, exercise, node, program, student
- Language: C++
- Size: 459 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A C++ Project
**This is a simple C++ project from my early days as a Computer Science student**
_This programm was created for the second semester class Data Structures
and is one of two such simple C++ programms neccessary to pass the class_
> #### Description of project
>
>>A program that implements an English-Greek dictionary using binary trees. Each node of the tree will contain the word in English and the corresponding translation in Greek. The search for the tree will be based on the word in English. The program can perform the basic search, import, delete operations.
>
> #### Functionality
>
> 1. User can insert a word and the translation
> 2. User can print all words and translations
> 3. User camn delete a word and the translation
> 4. User can search for a word and show its translation
> 5. User can print the binary tree
>
> #### About this project
>
> - The comments to make the code understandable, are within the archives
> - This program was written in CodeBlocks
> - This repository was created to show the variety of the work I did and experience I gained as a student
>