[Data Structure] Hash Table
Hash Table
ADT Data Structure
Mapping keys with values
Most of the operations are O(1) => good performance
Hash function
Mapping the arbitrary-sized data with the fixed-size data
eg) ABC -> A1, 1234BC -> CB
Load Factor = n / k
n: the numb...
siwonlog.hashnode.dev2 min read