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

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

A binary search tree is a tree data structure in which each node has at most two children, referred to as the left and right child. For each node, all elements in the left subtree are less than the node's value, and all elements in the right subtree are greater.
https://github.com/lsafonso/binary-search-tree

algorithms algorithms-and-data-structures binary-search binary-search-tree java

Last synced: 7 months ago
JSON representation

A binary search tree is a tree data structure in which each node has at most two children, referred to as the left and right child. For each node, all elements in the left subtree are less than the node's value, and all elements in the right subtree are greater.

Awesome Lists containing this project

README

          

# binary-search-tree
A binary search tree is a tree data structure in which each node has at most two children, referred to as the left and right child.
For each node, all elements in the left subtree are less than the node's value, and all elements in the right subtree are greater.

![image](https://github.com/raionpac/binary-search-tree/assets/18443784/7692a4ca-08eb-4b8c-8096-f24bd4dc74ab)

![image](https://github.com/raionpac/binary-search-tree/assets/18443784/24b4e741-2754-4dc6-9195-6b999b6f38ae)