Texonom
Texonom
/
Computing
Computing
/Data/Data Structure/Tree Data/Binary Tree/Search Tree/
Binary search tree
Search

Binary search tree

Creator
Creator
Seonglae Cho
Created
Created
2023 Sep 21 7:23
Editor
Editor
Seonglae Cho
Edited
Edited
2023 Dec 9 8:32
Refs
Refs

BSTs are not good if not balanced

Binary search trees
Balanced tree
BSP Tree
Splay tree
 
 
BST notion
BST Expected depth
BST rank
 
 
 
 
Binary search tree
In computer science, a binary search tree (BST), also called an ordered or sorted binary tree, is a rooted binary tree data structure with the key of each internal node being greater than all the keys in the respective node's left subtree and less than the ones in its right subtree. The time complexity of operations on the binary search tree is directly proportional to the height of the tree.
Binary search tree
https://en.wikipedia.org/wiki/Binary_search_tree
Binary search tree
 
 

Recommendations

Texonom
Texonom
/
Computing
Computing
/Data/Data Structure/Tree Data/Binary Tree/Search Tree/
Binary search tree
Copyright Seonglae Cho