hello-algo/en/docs/chapter_hashing/index.md

22 lines
725 B
Markdown
Raw Normal View History

2024-01-28 22:31:08 +08:00
---
comments: true
icon: material/table-search
---
2024-04-06 03:02:20 +08:00
# Chapter 6.   Hash table
2024-01-28 22:31:08 +08:00
2024-04-06 03:02:20 +08:00
![Hash table](../assets/covers/chapter_hashing.jpg){ class="cover-image" }
2024-01-28 22:31:08 +08:00
!!! abstract
2024-02-08 03:34:44 +08:00
In the world of computing, a hash table is akin to an intelligent librarian.
2024-01-28 22:31:08 +08:00
2024-02-08 03:34:44 +08:00
It understands how to compute index numbers, enabling swift retrieval of the desired book.
2024-01-28 22:31:08 +08:00
## Chapter Contents
2024-04-06 03:02:20 +08:00
- [6.1   Hash table](https://www.hello-algo.com/en/chapter_hashing/hash_map/)
- [6.2   Hash collision](https://www.hello-algo.com/en/chapter_hashing/hash_collision/)
- [6.3   Hash algorithm](https://www.hello-algo.com/en/chapter_hashing/hash_algorithm/)
2024-01-28 22:31:08 +08:00
- [6.4   Summary](https://www.hello-algo.com/en/chapter_hashing/summary/)