1
0
Fork 0
hash-table/docs/HASH_TABLE

9 lines
345 B
Plaintext
Raw Normal View History

2024-04-12 15:40:47 +00:00
=== HASH TABLE =================================================================
1. Calling the hash-function with the same input, should always return the
same output.
2. Hash output should be unique.
3. Computing a hash should be fast, the whole point of a hash table is fast
lookup time.
4. Hash output should be "random".