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.
hello-algo/docs/chapter_searching/index.md

24 lines
750 B

---
comments: true
icon: material/text-search
---
# 第 10 章   搜索
![搜索](../assets/covers/chapter_searching.jpg){ class="cover-image" }
!!! abstract
搜索是一场未知的冒险,我们或许需要走遍神秘空间的每个角落,又或许可以快速锁定目标。
在这场寻觅之旅中,每一次探索都可能得到一个未曾料想的答案。
## 本章内容
- [10.1   二分查找](binary_search.md)
- [10.2   二分查找插入点](binary_search_insertion.md)
- [10.3   二分查找边界](binary_search_edge.md)
- [10.4   哈希优化策略](replace_linear_by_hashing.md)
- [10.5   重识搜索算法](searching_algorithm_revisited.md)
- [10.6   小结](summary.md)