Chapter 13. Backtracking¶
Abstract
Like explorers in a maze, we may encounter obstacles on our path forward.
The power of backtracking lets us begin anew, keep trying, and eventually find the exit leading to the light.
Chapter contents¶
- 13.1 Backtracking algorithms
- 13.2 Permutation problem
- 13.3 Subset sum problem
- 13.4 n queens problem
- 13.5 Summary