问题描述
给定一个无重复元素的数组 candidates
和一个目标数 target
,找出 candidates
中所有可以使数字和为 target
的组合。
candidates
中的数字可以无限制重复被选取。
说明:
- 所有数字(包括
target
)都是正整数。 - 解集不能包含重复的组合。
示例 1:
1 | 输入: candidates = [2,3,6,7], target = 7, |
示例 2:
1 | 输入: candidates = [2,3,5], target = 8, |
解题思路
递归回溯法:
- 遍历
candidates
,计算target
与每个数字num
的余数 - 如果余数等于0,则将
num
添加到结果列表 - 否则,令
target
等于余数,跳转到第一步,从剩余数字(包括num
)中查找target
组合 - 如果
target
小于零,终止递归
Code
1 | class Solution: |
本题可以先对candidates
排序,当余数r
小于零时,终止后面数字的遍历,从而降低时间复杂度。
1 | class Solution: |