mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-05 20:24:19 +00:00
22 lines
525 B
Markdown
22 lines
525 B
Markdown
---
|
|
comments: true
|
|
icon: material/table-search
|
|
---
|
|
|
|
# Chapter 6. Hashing
|
|
|
|
{ class="cover-image" }
|
|
|
|
!!! abstract
|
|
|
|
In the world of computing, a hash table is like a clever librarian.
|
|
|
|
It knows how to compute call numbers, allowing it to quickly locate the desired book.
|
|
|
|
## Chapter contents
|
|
|
|
- [6.1 Hash Table](hash_map.md)
|
|
- [6.2 Hash Collision](hash_collision.md)
|
|
- [6.3 Hash Algorithm](hash_algorithm.md)
|
|
- [6.4 Summary](summary.md)
|