2023-06-02 01:35:02 +08:00
|
|
|
---
|
|
|
|
comments: true
|
2023-07-17 17:51:03 +08:00
|
|
|
icon: material/map-marker-path
|
2023-06-02 01:35:02 +08:00
|
|
|
---
|
|
|
|
|
2023-07-16 04:18:52 +08:00
|
|
|
# 13. 回溯
|
2023-06-02 01:35:02 +08:00
|
|
|
|
|
|
|
<div class="center-table" markdown>
|
|
|
|
|
2023-07-29 04:48:28 +08:00
|
|
|
![回溯](../assets/covers/chapter_backtracking.jpg){ width="600" }
|
2023-06-02 01:35:02 +08:00
|
|
|
|
|
|
|
</div>
|
2023-07-17 17:51:03 +08:00
|
|
|
|
2023-08-03 04:37:52 +08:00
|
|
|
!!! abstract
|
|
|
|
|
2023-08-04 05:24:49 +08:00
|
|
|
我们如同迷宫中的探索者,在前进的道路上可能会遇到困难。
|
2023-08-03 04:37:52 +08:00
|
|
|
|
2023-08-04 05:24:49 +08:00
|
|
|
回溯的力量让我们能够重新开始,不断尝试,最终找到通往光明的出口。
|
2023-08-03 04:37:52 +08:00
|
|
|
|
2023-07-17 17:51:03 +08:00
|
|
|
## 本章内容
|
|
|
|
|
|
|
|
- [13.1 回溯算法](https://www.hello-algo.com/chapter_backtracking/backtracking_algorithm/)
|
|
|
|
- [13.2 全排列问题](https://www.hello-algo.com/chapter_backtracking/permutations_problem/)
|
|
|
|
- [13.3 子集和问题](https://www.hello-algo.com/chapter_backtracking/subset_sum_problem/)
|
|
|
|
- [13.4 N 皇后问题](https://www.hello-algo.com/chapter_backtracking/n_queens_problem/)
|
|
|
|
- [13.5 小结](https://www.hello-algo.com/chapter_backtracking/summary/)
|