Jiang's blog

力扣习题分类之----回溯算法

Word count: 200Reading time: 1 min
2020/06/01 Share

回溯算法

1.电话号码的字母组合(+++)

力扣第17题: https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/

2. 括号生成(++)

力扣第22题: https://leetcode-cn.com/problems/generate-parentheses/

3.组合总和(+++++)

力扣第39题: https://leetcode-cn.com/problems/combination-sum/

4. 组合总和 II(+++++)

力扣第40题: https://leetcode-cn.com/problems/combination-sum-ii/

5. 全排列(+++++)

力扣第46题: https://leetcode-cn.com/problems/permutations/

6. 全排列 II (+++++)

力扣第47题: https://leetcode-cn.com/problems/permutations-ii/

7. 组合总和 III (+++)

力扣第216题: https://leetcode-cn.com/problems/combination-sum-iii/

8. 第k个排列 (+)

力扣第60题: https://leetcode-cn.com/problems/permutation-sequence/

9. 子集(+++++)

力扣第78题: https://leetcode-cn.com/problems/subsets/

10. 子集 II (+++++)

力扣第90题: https://leetcode-cn.com/problems/subsets-ii/

11. 幂集 (+++++)

力扣面试题08.04: https://leetcode-cn.com/problems/power-set-lcci/

CATALOG
  1. 1. 回溯算法
    1. 1.0.1. 1.电话号码的字母组合(+++)
    2. 1.0.2. 2. 括号生成(++)
    3. 1.0.3. 3.组合总和(+++++)
    4. 1.0.4. 4. 组合总和 II(+++++)
    5. 1.0.5. 5. 全排列(+++++)
    6. 1.0.6. 6. 全排列 II (+++++)
    7. 1.0.7. 7. 组合总和 III (+++)
    8. 1.0.8. 8. 第k个排列 (+)
    9. 1.0.9. 9. 子集(+++++)
    10. 1.0.10. 10. 子集 II (+++++)
    11. 1.0.11. 11. 幂集 (+++++)