-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFourSum.java
80 lines (61 loc) · 2.15 KB
/
FourSum.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
74
75
76
77
78
79
80
import java.util.*;
/**
* Created by achoudhary on 18/01/2016.
*/
public class FourSum {
public List<List<Integer>> fourSum(int[] nums, int target) {
Set<List<Integer>> set = new HashSet<>();
List<List<Integer>> result = new ArrayList<>();
Arrays.sort(nums);
for (int i = 0; i < nums.length; i++) {
for (int j = i+1; j < nums.length; j++) {
int k = j+1;
int l = nums.length-1;
while(k < l){
int curr = nums[i]+nums[j]+nums[k]+nums[l];
if(curr < target){
k++;
}else if(curr > target){
l--;
}else if(curr == target){
List<Integer> tuple = new ArrayList<>();
tuple.add(nums[i]);
tuple.add(nums[j]);
tuple.add(nums[k]);
tuple.add(nums[l]);
if(set.add(tuple)){
result.add(tuple);
}
k++;
l--;
}
}
}
}
return result;
}
private void depthFirstSearch(int[] nums, List<List<Integer>> result,List<Integer> tuple, int start , int target,int ultimateTarget){
if(tuple.size() > 4){
return;
}
System.err.println("target "+target);
if(target == ultimateTarget && tuple.size() == 4){
System.out.printf("AAKKAKA "+tuple);
result.add(tuple);
return;
}
for (int i = start; i < nums.length; i++) {
if(tuple.size() == 0 || tuple.get(tuple.size()-1) < nums[i]) {
tuple.add(nums[i]);
}else{
return;
}
depthFirstSearch(nums,result,tuple,i,target+nums[i],ultimateTarget);
tuple.remove(tuple.size()-1);
}
}
public static void main(String[] args) {
int[] input = new int[]{1,0,-1,0,-2,2};
System.out.println(new FourSum().fourSum(input , 0));
}
}