mirror of
https://github.com/trekhleb/javascript-algorithms.git
synced 2025-12-08 19:06:00 +00:00
375 B
375 B
Hashed Table
| Operation | Complexity |
|---|---|
| Find | O(1)* |
| Insert | O(1)* |
| Delete | O(1)* |
-
- assuming that we have "good" hash function and big enough hash table size so that collisions are rare.