hello-algo/docs/chapter_searching/index.md

24 lines
1,008 B
Markdown
Raw Normal View History

2023-06-02 01:35:02 +08:00
---
comments: true
2023-07-17 17:51:03 +08:00
icon: material/text-search
2023-06-02 01:35:02 +08:00
---
2023-08-19 22:07:27 +08:00
# 第 10 章   搜索
2023-06-02 01:35:02 +08:00
2023-11-09 05:13:48 +08:00
![搜索](../assets/covers/chapter_searching.jpg){ class="cover-image" }
2023-06-02 01:35:02 +08:00
2023-08-03 04:37:52 +08:00
!!! abstract
搜索是一场未知的冒险,我们或许需要走遍神秘空间的每个角落,又或许可以快速锁定目标。
在这场寻觅之旅中,每一次探索都可能得到一个未曾料想的答案。
2023-07-17 17:51:03 +08:00
## 本章内容
- [10.1   二分查找](https://www.hello-algo.com/chapter_searching/binary_search/)
2023-08-04 05:24:49 +08:00
- [10.2   二分查找插入点](https://www.hello-algo.com/chapter_searching/binary_search_insertion/)
- [10.3   二分查找边界](https://www.hello-algo.com/chapter_searching/binary_search_edge/)
- [10.4   哈希优化策略](https://www.hello-algo.com/chapter_searching/replace_linear_by_hashing/)
- [10.5   重识搜索算法](https://www.hello-algo.com/chapter_searching/searching_algorithm_revisited/)
- [10.6   小结](https://www.hello-algo.com/chapter_searching/summary/)