mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-28 22:06:30 +08:00
23 lines
1 KiB
Markdown
23 lines
1 KiB
Markdown
---
|
|
comments: true
|
|
icon: material/text-search
|
|
---
|
|
|
|
# 第 10 章 搜尋
|
|
|
|
![搜尋](../assets/covers/chapter_searching.jpg){ class="cover-image" }
|
|
|
|
!!! abstract
|
|
|
|
搜尋是一場未知的冒險,我們或許需要走遍神秘空間的每個角落,又或許可以快速鎖定目標。
|
|
|
|
在這場尋覓之旅中,每一次探索都可能得到一個未曾料想的答案。
|
|
|
|
## Chapter Contents
|
|
|
|
- [10.1 二分搜尋](https://www.hello-algo.com/en/chapter_searching/binary_search/)
|
|
- [10.2 二分搜尋插入點](https://www.hello-algo.com/en/chapter_searching/binary_search_insertion/)
|
|
- [10.3 二分搜尋邊界](https://www.hello-algo.com/en/chapter_searching/binary_search_edge/)
|
|
- [10.4 雜湊最佳化策略](https://www.hello-algo.com/en/chapter_searching/replace_linear_by_hashing/)
|
|
- [10.5 重識搜尋演算法](https://www.hello-algo.com/en/chapter_searching/searching_algorithm_revisited/)
|
|
- [10.6 小結](https://www.hello-algo.com/en/chapter_searching/summary/)
|