mirror of
https://github.com/krahets/hello-algo.git
synced 2026-09-25 07:46:37 +08:00
Add translated chapter exercise pages (#1941)
Add dedicated chapter exercise sections and generated exercise pages for the English, Japanese, and Russian editions. Add navigation for all published languages while keeping Taiwan Traditional Chinese exercise pages generated at build time.
This commit is contained in:
@@ -59,6 +59,7 @@ nav:
|
||||
- 2.3 Временная сложность: chapter_computational_complexity/time_complexity.md
|
||||
- 2.4 Пространственная сложность: chapter_computational_complexity/space_complexity.md
|
||||
- 2.5 Резюме: chapter_computational_complexity/summary.md
|
||||
- 2.6 Упражнения: chapter_computational_complexity/exercises.md
|
||||
- Глава 3. Структуры данных:
|
||||
# [icon: material/shape-outline]
|
||||
- chapter_data_structure/index.md
|
||||
@@ -67,6 +68,7 @@ nav:
|
||||
- 3.3 Кодирование чисел *: chapter_data_structure/number_encoding.md
|
||||
- 3.4 Кодирование символов *: chapter_data_structure/character_encoding.md
|
||||
- 3.5 Резюме: chapter_data_structure/summary.md
|
||||
- 3.6 Упражнения: chapter_data_structure/exercises.md
|
||||
- Глава 4. Массивы и списки:
|
||||
# [icon: material/view-list-outline]
|
||||
- chapter_array_and_linkedlist/index.md
|
||||
@@ -75,6 +77,7 @@ nav:
|
||||
- 4.3 Список: chapter_array_and_linkedlist/list.md
|
||||
- 4.4 Оперативная память и кэш *: chapter_array_and_linkedlist/ram_and_cache.md
|
||||
- 4.5 Резюме: chapter_array_and_linkedlist/summary.md
|
||||
- 4.6 Упражнения: chapter_array_and_linkedlist/exercises.md
|
||||
- Глава 5. Стек и очередь:
|
||||
# [icon: material/stack-overflow]
|
||||
- chapter_stack_and_queue/index.md
|
||||
@@ -82,6 +85,7 @@ nav:
|
||||
- 5.2 Очередь: chapter_stack_and_queue/queue.md
|
||||
- 5.3 Двусторонняя очередь: chapter_stack_and_queue/deque.md
|
||||
- 5.4 Резюме: chapter_stack_and_queue/summary.md
|
||||
- 5.5 Упражнения: chapter_stack_and_queue/exercises.md
|
||||
- Глава 6. Хеш-таблицы:
|
||||
# [icon: material/table-search]
|
||||
- chapter_hashing/index.md
|
||||
@@ -89,6 +93,7 @@ nav:
|
||||
- 6.2 Хеш-коллизии: chapter_hashing/hash_collision.md
|
||||
- 6.3 Алгоритмы хеширования: chapter_hashing/hash_algorithm.md
|
||||
- 6.4 Резюме: chapter_hashing/summary.md
|
||||
- 6.5 Упражнения: chapter_hashing/exercises.md
|
||||
- Глава 7. Деревья:
|
||||
# [icon: material/graph-outline]
|
||||
- chapter_tree/index.md
|
||||
@@ -98,6 +103,7 @@ nav:
|
||||
- 7.4 Двоичное дерево поиска: chapter_tree/binary_search_tree.md
|
||||
- 7.5 AVL-дерево *: chapter_tree/avl_tree.md
|
||||
- 7.6 Краткие итоги: chapter_tree/summary.md
|
||||
- 7.7 Упражнения: chapter_tree/exercises.md
|
||||
- Глава 8. Куча:
|
||||
# [icon: material/family-tree]
|
||||
- chapter_heap/index.md
|
||||
@@ -105,6 +111,7 @@ nav:
|
||||
- 8.2 Построение кучи: chapter_heap/build_heap.md
|
||||
- 8.3 Задача Top-k: chapter_heap/top_k.md
|
||||
- 8.4 Резюме: chapter_heap/summary.md
|
||||
- 8.5 Упражнения: chapter_heap/exercises.md
|
||||
- Глава 9. Графы:
|
||||
# [icon: material/graphql]
|
||||
- chapter_graph/index.md
|
||||
@@ -112,6 +119,7 @@ nav:
|
||||
- 9.2 Базовые операции графа: chapter_graph/graph_operations.md
|
||||
- 9.3 Обход графа: chapter_graph/graph_traversal.md
|
||||
- 9.4 Краткие итоги: chapter_graph/summary.md
|
||||
- 9.5 Упражнения: chapter_graph/exercises.md
|
||||
- Глава 10. Поиск:
|
||||
# [icon: material/text-search]
|
||||
- chapter_searching/index.md
|
||||
@@ -121,6 +129,7 @@ nav:
|
||||
- 10.4 Стратегии оптимизации хеширования: chapter_searching/replace_linear_by_hashing.md
|
||||
- 10.5 Переосмысление алгоритмов поиска: chapter_searching/searching_algorithm_revisited.md
|
||||
- 10.6 Резюме: chapter_searching/summary.md
|
||||
- 10.7 Упражнения: chapter_searching/exercises.md
|
||||
- Глава 11. Сортировка:
|
||||
# [icon: material/sort-ascending]
|
||||
- chapter_sorting/index.md
|
||||
@@ -135,6 +144,7 @@ nav:
|
||||
- 11.9 Сортировка подсчетом: chapter_sorting/counting_sort.md
|
||||
- 11.10 Поразрядная сортировка: chapter_sorting/radix_sort.md
|
||||
- 11.11 Резюме: chapter_sorting/summary.md
|
||||
- 11.12 Упражнения: chapter_sorting/exercises.md
|
||||
- Глава 12. Разделяй и властвуй:
|
||||
# [icon: material/set-split]
|
||||
- chapter_divide_and_conquer/index.md
|
||||
@@ -143,6 +153,7 @@ nav:
|
||||
- 12.3 Задача построения двоичного дерева: chapter_divide_and_conquer/build_binary_tree_problem.md
|
||||
- 12.4 Задача о Ханойской башне: chapter_divide_and_conquer/hanota_problem.md
|
||||
- 12.5 Резюме: chapter_divide_and_conquer/summary.md
|
||||
- 12.6 Упражнения: chapter_divide_and_conquer/exercises.md
|
||||
- Глава 13. Поиск с возвратом:
|
||||
# [icon: material/map-marker-path]
|
||||
- chapter_backtracking/index.md
|
||||
@@ -151,6 +162,7 @@ nav:
|
||||
- 13.3 Задача о сумме подмножеств: chapter_backtracking/subset_sum_problem.md
|
||||
- 13.4 Задача о n ферзях: chapter_backtracking/n_queens_problem.md
|
||||
- 13.5 Резюме: chapter_backtracking/summary.md
|
||||
- 13.6 Упражнения: chapter_backtracking/exercises.md
|
||||
- Глава 14. Динамическое программирование:
|
||||
# [icon: material/table-pivot]
|
||||
- chapter_dynamic_programming/index.md
|
||||
@@ -161,6 +173,7 @@ nav:
|
||||
- 14.5 Задача о полном рюкзаке: chapter_dynamic_programming/unbounded_knapsack_problem.md
|
||||
- 14.6 Задача о расстоянии редактирования: chapter_dynamic_programming/edit_distance_problem.md
|
||||
- 14.7 Резюме: chapter_dynamic_programming/summary.md
|
||||
- 14.8 Упражнения: chapter_dynamic_programming/exercises.md
|
||||
- Глава 15. Жадность:
|
||||
# [icon: material/head-heart-outline]
|
||||
- chapter_greedy/index.md
|
||||
@@ -169,6 +182,7 @@ nav:
|
||||
- 15.3 Задача о максимальной вместимости: chapter_greedy/max_capacity_problem.md
|
||||
- 15.4 Задача о максимальном произведении разбиения: chapter_greedy/max_product_cutting_problem.md
|
||||
- 15.5 Резюме: chapter_greedy/summary.md
|
||||
- 15.6 Упражнения: chapter_greedy/exercises.md
|
||||
- Глава 16. Приложение:
|
||||
# [icon: material/help-circle-outline]
|
||||
- chapter_appendix/index.md
|
||||
|
||||
Reference in New Issue
Block a user