Data Structures
- Tree - A hierarchical structure with root and child nodes representing relationships.
- Binary Search Tree (BST) - A binary tree where left children are smaller and right children are larger.
- B-Tree - A balanced search tree often used in databases for efficient data access.
- Graph Using Arrays - A graph represented by adjacency matrices or lists.
- Spanning Tree - A subgraph that connects all vertices with minimal edges.