Files
leetcode-master/problems/回溯总结.md
youngyangyang04 c761b59b50 Update
2020-09-18 16:51:32 +08:00

18 lines
257 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.

* 集合问题
* 切割问题
* 子集问题
* 排列问题
* 棋盘问题
* 皇后问题
* 解数独
# 单层递归
# 双层递归
# 组合 子集问题used[i-1] = false 来去重复, 啥问题 used[i-1] = true也是可以的来着