data-structures - Concepts
Explore concepts tagged with "data-structures"
Total concepts: 6
Concepts
- Concept Graph - A formal graph-theoretic representation of concepts as nodes and their relationships as edges, used to model and navigate knowledge structures.
- Graph Theory - The mathematical study of graphs as structures of nodes connected by edges, providing the foundation for network analysis and knowledge representation.
- Bloom Filter - A space-efficient probabilistic data structure that tests whether an element is a member of a set, allowing false positives but never false negatives.
- Hash Function - A function that maps data of arbitrary size to fixed-size values, used for fast data retrieval, integrity verification, and cryptography.
- Hierarchical Data - Information organized in a tree-like structure where each item has exactly one parent and zero or more children, creating nested levels from general to specific.
- Directed Acyclic Graph (DAG) - A graph with directed edges and no cycles, useful for representing dependencies and hierarchies.
← Back to all concepts