Socratic Mirror
Compression Digest
compression/_posts/2015-07-11-hash.md

Introduction to Hash Algorithms

[Literal] This document introduces hash functions, which map a set of N items into a structure that allows for O(1) expected time dictionary queries, contrasting with O(log N) time for sorted structures. [AI Synthesis] Hashing offers a trade-off between space complexity (O(N)) and query time.

Key points

Patterns / reminders

Sources