Files
hello-algo/ru/docs/chapter_searching/index.md
krahets e53a7f2498 build
2026-04-14 18:06:14 +08:00

24 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
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)