Tree
Binary Tree A binary tree is a tree data structure in which each node has at most two children, referred to as the left child and the right child.
B-Tree A B-tree is a self-balancing tree data structure that maintains sorted data and allows searches, sequential access, insertions, and deletions in logarithmic time. It is optimized for systems that read and write large blocks of data.
B+ Tree A B+ tree is an extension of a B-tree, optimized for systems that read and write large blocks of data.
[Read More]