Hash table
O(1), almost always.
Luhn's 1953 memo at IBM was the first written description of hashing — chained collision lists, modulo-prime hashing. He never published it; the idea spread through internal IBM technical reports until Donald Knuth catalogued it in TAOCP Vol. 3 (1973). Luhn also invented the now-eponymous credit-card checksum.
Hash function maps key → bucket index. Two collision strategies: chaining (each bucket is a list) and open addressing (probe to next slot). Load factor (entries / buckets) controls collision rate; resize when above ~0.75.
Every language's dictionary/map type. CPython dict (open addressing with perturbation). Java HashMap. Go map. Rust HashMap. Database hash indexes. Compiler symbol tables. Caches everywhere.
A bad hash function turns a hash table into a linked list. Hash flooding attacks (exploiting predictable collisions) are why every modern hashmap uses a randomised hash seed.