algorighm/backtrack/README.md

4 lines
241 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 回溯算法
回溯算法就是“递归+循环+剪枝”是一种暴力搜索的方式适合解决组合排列分组SCP(例如n皇后数独等)
绘制决策树更易于我们理解收集路径和回溯的过程。