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

https://github.com/bodiali/binary-search-tree

A balanced binary search tree is a type of binary search tree where the heights of the two child subtrees of any node differ by at most one. This ensures that the tree remains balanced, which in turn helps maintain efficient operations such as insertion, deletion, and search.
https://github.com/bodiali/binary-search-tree

algorithms-and-data-structures

Last synced: 8 months ago
JSON representation

A balanced binary search tree is a type of binary search tree where the heights of the two child subtrees of any node differ by at most one. This ensures that the tree remains balanced, which in turn helps maintain efficient operations such as insertion, deletion, and search.

Awesome Lists containing this project

README

          

# Balanced Binary Search Tree
A balanced binary search tree is a type of binary search tree where the heights of the two child subtrees of any node differ by at most one. This ensures that the tree remains balanced, which in turn helps maintain efficient operations such as insertion, deletion, and search.