Posts Tagged "data-structure"
B-Tree
B-Tree is a data structure that stores elements in a tree structure.
 
Read Post  
  Sequential Symbol Tables
Sequential Symbol Tables is a data structure that stores key-value pairs in a sequential manner.
 
Read Post  
  Heap
Heap is a data structure that stores elements in a tree-like structure.
 
Read Post  
  Map
Map is a data structure that contains key-value pairs.
 
Read Post  
  Red-Black Tree
Red-Black Tree is a data structure that stores elements in a binary search tree.
 
Read Post  
  AVL Tree
AVL Tree is a self-balancing binary search tree.
 
Read Post  
  Binary Search Tree
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.
 
Read Post