Skip to content

Files

Latest commit

e88ce2e · Mar 22, 2021

History

History
44 lines (26 loc) · 1.12 KB

README.md

File metadata and controls

44 lines (26 loc) · 1.12 KB

Logo

Binary Search Tree

BST implemantation in C

Made By Lang Made By



Binary Search Trees in general



A binary search trees (BST) is a container that allows fast lookup, addition and removal of items, and can be used to implement either dynamic sets of items, or lookup tables that allow finding an item by its key (e.g., finding the phone number of a person by name).



About:

Assignment for the Data Structure course from Big Data at IESB.

This project implements in a working and optimal way a BST using C as a programming language.