You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
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
|
|
|
|
|
|
|
|
In the world of computing, a hash table is akin to an intelligent librarian.
|
|
|
|
|
|
|
|
It understands how to compute index numbers, enabling swift retrieval of the desired book.
|
|
|
|
|
|
|
|
## Chapter Contents
|
|
|
|
|
|
|
|
- [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/)
|
|
|
|
- [6.4 Summary](https://www.hello-algo.com/en/chapter_hashing/summary/)
|