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

26 lines
770 B
Markdown
Raw Normal View History

2024-01-28 22:31:08 +08:00
---
comments: true
icon: material/table-search
---
# Chapter 6.   Hash Table
<div class="center-table" markdown>
![Hash Table](../assets/covers/chapter_hashing.jpg){ class="cover-image" }
</div>
!!! 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
- [6.1 &nbsp; Hash Table](https://www.hello-algo.com/en/chapter_hashing/hash_map/)
- [6.2 &nbsp; Hash Collision](https://www.hello-algo.com/en/chapter_hashing/hash_collision/)
- [6.3 &nbsp; Hash Algorithm](https://www.hello-algo.com/en/chapter_hashing/hash_algorithm/)
- [6.4 &nbsp; Summary](https://www.hello-algo.com/en/chapter_hashing/summary/)