Learn Before
Concept
Binary Search Tree
A binary search tree is a specific type of tree that orders its subtrees based on the value of the node. For every node in the tree, the left sub tree must have a value less than the node (or parent) and the right sub tree must have a value greater than or equal to the node.
0
1
Updated 2021-07-06
Tags
Python Programming Language
Data Science