mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-28 21:46:28 +08:00
20 lines
692 B
Markdown
20 lines
692 B
Markdown
---
|
|
comments: true
|
|
icon: material/map-marker-path
|
|
---
|
|
|
|
# 13. 回溯
|
|
|
|
<div class="center-table" markdown>
|
|
|
|
![回溯](../assets/covers/chapter_backtracking.jpg){ width="70%" }
|
|
|
|
</div>
|
|
|
|
## 本章内容
|
|
|
|
- [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/)
|