Combination Sum
1解法
public class Solution {
public List<List<Integer>> combinationSum(int[] candidates, int target) {
List<List<Integer>> result = new ArrayList<>();
if (candidates == null) {
return result;
}
List<Integer> combination = new ArrayList<>();
Arrays.sort(candidates);
helper(candidates, 0, target, combination, result);
return result;
}
void helper(int[] candidates,
int index,
int target,
List<Integer> combination,
List<List<Integer>> result) {
if (target == 0) {
result.add(new ArrayList<Integer>(combination));
return;
}
for (int i = index; i < candidates.length; i++) {
if (candidates[i] > target) {
break;
}
if (i != 0 && candidates[i] == candidates[i - 1]) {
continue;
}
combination.add(candidates[i]);
helper(candidates, i, target - candidates[i], combination, result);
combination.remove(combination.size() - 1);
}
}
}
解法3
public class Solution {
/**
* @param candidates: A list of integers
* @param target: An integer
* @return: A list of lists of integers
*/
public List<List<Integer>> combinationSum(int[] candidates, int target) {
Arrays.sort(candidates);
List<List<Integer>> results = new ArrayList<>();
dfs(candidates, 0, target, new ArrayList<Integer>(), results);
return results;
}
private void dfs(int[] candidates, int index, int target, List<Integer> combination, List<List<Integer>> results) {
if (index == candidates.length) {
if (target == 0) {
results.add(new ArrayList<Integer>(combination));
}
return;
}
if (target < 0) {
return;
}
dfs(candidates, index + 1, target, combination, results);
if (index > 0 && candidates[index] == candidates[index - 1]) {
return;
}
combination.add(candidates[index]);
dfs(candidates, index, target - candidates[index], combination, results);
combination.remove(combination.size() - 1);
}
}
最后更新于
这有帮助吗?