Neocortex 🧠

Search

Search IconIcon to open search

Binary Search Trees

Last updated Jan 1, 2022 Edit Source

Binary search trees are an extension of the Binary Tree data structure, except it has two extra constraint:

Thanks to these properties, binary search trees allow searching for a node in $O(log(n))$ time.


Interactive Graph