mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-06 04:34:20 +00:00
24 lines
823 B
Markdown
24 lines
823 B
Markdown
---
|
|
comments: true
|
|
icon: material/text-search
|
|
---
|
|
|
|
# Chapter 10. Searching
|
|
|
|
{ class="cover-image" }
|
|
|
|
!!! abstract
|
|
|
|
Searching is an adventure into the unknown, where we may need to traverse every corner of the mysterious space, or we may be able to quickly lock onto the target.
|
|
|
|
In this journey of discovery, each exploration may yield an unexpected answer.
|
|
|
|
## Chapter contents
|
|
|
|
- [10.1 Binary Search](binary_search.md)
|
|
- [10.2 Binary Search Insertion Point](binary_search_insertion.md)
|
|
- [10.3 Binary Search Boundaries](binary_search_edge.md)
|
|
- [10.4 Hash Optimization Strategy](replace_linear_by_hashing.md)
|
|
- [10.5 Searching Algorithms Revisited](searching_algorithm_revisited.md)
|
|
- [10.6 Summary](summary.md)
|