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.
|
|
|
---
|
|
|
|
comments: true
|
|
|
|
icon: material/map-marker-path
|
|
|
|
---
|
|
|
|
|
|
|
|
# 第 13 章 回溯
|
|
|
|
|
|
|
|
![回溯](../assets/covers/chapter_backtracking.jpg){ class="cover-image" }
|
|
|
|
|
|
|
|
!!! abstract
|
|
|
|
|
|
|
|
我们如同迷宫中的探索者,在前进的道路上可能会遇到困难。
|
|
|
|
|
|
|
|
回溯的力量让我们能够重新开始,不断尝试,最终找到通往光明的出口。
|
|
|
|
|
|
|
|
## 本章内容
|
|
|
|
|
|
|
|
- [13.1 回溯算法](backtracking_algorithm.md)
|
|
|
|
- [13.2 全排列问题](permutations_problem.md)
|
|
|
|
- [13.3 子集和问题](subset_sum_problem.md)
|
|
|
|
- [13.4 N 皇后问题](n_queens_problem.md)
|
|
|
|
- [13.5 小结](summary.md)
|