balanced-binary-search-tree
There are 5 repositories under balanced-binary-search-tree topic.
dominikkempa/zip-tree
C++ Implementation of Zip Trees
Ualabi/self_balancing_binary_search_tree
A Python implementation of a self balancing binary search tree (AVL Tree). Useful to practice, study and see how the SBBTs works.
sminerport/BalancedTreeLib
This repository offers a robust implementation of an AVL tree (balanced binary search tree) in Python, encapsulated within the Node and Tree classes. It includes methods for building the tree (build_tree()), inserting nodes (insert()), and deleting nodes (delete()). The implementation ensures that the tree remains balanced, optimizing performance.
lacayodaniel/CovidProject
A project from my python class during my sophomore year, using COVID-19 data. Reads data from local files, performs linear search and quick sort on array of objects, builds balanced binary search tree and searches balanced BST.