Files
leetcode-master/problems/回溯总结.md
youngyangyang04 d1cf776be3 Update
2020-11-11 11:16:05 +08:00

25 lines
360 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.

* 集合问题
* 切割问题
* 子集问题
* 排列问题
* 棋盘问题
* 皇后问题
* 解数独
* 讲一讲去重为什么要排序。
491. 递增子序列
# 单层递归
# 双层递归
# 组合 子集问题used[i-1] = false 来去重复, 啥问题 used[i-1] = true也是可以的来着 排列问题
# 时间复杂度分析