-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCombinationSum_II_40.java
73 lines (62 loc) · 2.51 KB
/
CombinationSum_II_40.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.leetcode.problems.medium;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* @author neeraj on 07/09/19
* Copyright (c) 2019, data-structures.
* All rights reserved.
*/
public class CombinationSum_II_40 {
public static void main(String[] args) {
combinationSum2(new int[]{10, 1, 2, 7, 6, 1, 5}, 8);
combinationSum2(new int[]{1, 1}, 1);
distinctSubSet(new int[]{1, 2, 3});
}
public static List<List<Integer>> distinctSubSet(int[] arr) {
List<List<Integer>> result = new ArrayList<>();
doDFS(arr, 0, new ArrayList<>(), result);
System.out.println(result);
return result;
}
private static void doDFS(int[] arr, int pointer, List<Integer> subset, List<List<Integer>> result) {
result.add(new ArrayList<>(subset));
for (int i = pointer; i < arr.length; i++) {
subset.add(arr[i]);
doDFS(arr, i + 1, subset, result);
subset.remove(subset.size() - 1);
}
}
public static List<List<Integer>> combinationSum2(int[] candidates, int target) {
// To avoid duplicates, Since once we sort if there are duplicate numbers
// they will be together and we can simply check if candidates[i] == candidates[i-1];
Arrays.sort(candidates);
List<List<Integer>> result = new ArrayList<>();
doDFS(candidates, 0, new ArrayList<>(), result, target);
System.out.println(result);
return result;
}
private static void doDFS(int[] candidates, int pointer,
List<Integer> currentPath, List<List<Integer>> result, int target) {
if (target == 0) {
result.add(new ArrayList<>(currentPath));
return;
}
if (target < 0) {
return;
}
for (int i = pointer; i < candidates.length; i++) {
// Why i == pointer, since we can't compare first element
// with previousElement since there is no previousElement
// And this check if for the case of I/p {1,1} target=1
// If we don't check for duplicates we will end up with
// [[1], [1]] instead answer should be [[1]]
if (i == pointer || candidates[i] != candidates[i - 1]) {
currentPath.add(candidates[i]);
doDFS(candidates, i + 1, currentPath, result, target - candidates[i]);
// Back track
currentPath.remove(currentPath.size() - 1);
}
}
}
}