An open API service indexing awesome lists of open source software.

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.

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
>