C++ Implementation of Zip Trees
-
Updated
Nov 5, 2022 - C++
C++ Implementation of Zip Trees
A Python implementation of a self balancing binary search tree (AVL Tree). Useful to practice, study and see how the SBBTs works.
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.
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.
Add a description, image, and links to the balanced-binary-search-tree topic page so that developers can more easily learn about it.
To associate your repository with the balanced-binary-search-tree topic, visit your repo's landing page and select "manage topics."