mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-28 04:56:28 +08:00
23 lines
891 B
Markdown
23 lines
891 B
Markdown
|
---
|
||
|
comments: true
|
||
|
icon: material/map-marker-path
|
||
|
---
|
||
|
|
||
|
# 第 13 章 回溯
|
||
|
|
||
|
![回溯](../assets/covers/chapter_backtracking.jpg){ class="cover-image" }
|
||
|
|
||
|
!!! abstract
|
||
|
|
||
|
我們如同迷宮中的探索者,在前進的道路上可能會遇到困難。
|
||
|
|
||
|
回溯的力量讓我們能夠重新開始,不斷嘗試,最終找到通往光明的出口。
|
||
|
|
||
|
## Chapter Contents
|
||
|
|
||
|
- [13.1 回溯演算法](https://www.hello-algo.com/en/chapter_backtracking/backtracking_algorithm/)
|
||
|
- [13.2 全排列問題](https://www.hello-algo.com/en/chapter_backtracking/permutations_problem/)
|
||
|
- [13.3 子集和問題](https://www.hello-algo.com/en/chapter_backtracking/subset_sum_problem/)
|
||
|
- [13.4 N 皇后問題](https://www.hello-algo.com/en/chapter_backtracking/n_queens_problem/)
|
||
|
- [13.5 小結](https://www.hello-algo.com/en/chapter_backtracking/summary/)
|