-
Notifications
You must be signed in to change notification settings - Fork 0
/
LeetCode_15.java
73 lines (69 loc) · 2.37 KB
/
LeetCode_15.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
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
public class LeetCode_15 {
// class Solution {
// HashSet<List<Integer>> set = new HashSet<>();
//
// public List<List<Integer>> threeSum(int[] nums) {
// boolean[] str = new boolean[nums.length];
// int[] count = new int[4];
// DFS(nums, str, count, 0, 0);
// return new ArrayList<>(set);
// }
//
// public void DFS(int[] nums, boolean[] str, int[] count, int index, int wei) {
// if (index > 2) {
// if (count[0] + count[1] + count[2] == 0) {
// List<Integer> list = new ArrayList<>();
// list.add(count[0]);
// list.add(count[1]);
// list.add(count[2]);
// list.sort((o1, o2) -> o1 - o2);
// set.add(list);
// }
// return;
// }
//
// for (int i = wei; i < nums.length; i++) {
// if (!str[i]) {
// count[index] = nums[i];
// str[i] = true;
// DFS(nums, str, count, index + 1, i + 1);
// str[i] = false;
//
// }
// }
// }
// }
class Solution {
public List<List<Integer>> threeSum(int[] nums) {
HashSet<List<Integer>> set = new HashSet<>();
int len = nums.length;
Arrays.sort(nums);
for (int i = 0; i < len - 2 && nums[i] <= 0; i++) {
if (i > 0 && nums[i] == nums[i - 1])
continue;
// 寻找起点
int left = i + 1, right = len - 1;
while (left < right) {
int sum = nums[i] + nums[left] + nums[right];
if (sum == 0) {
List<Integer> temp = new ArrayList<>();
temp.add(nums[i]);
temp.add(nums[left]);
temp.add(nums[right]);
set.add(temp);
left++;
right--;
} else if (sum < 0)
left++;
else
right--;
}
}
return new ArrayList<>(set);
}
}
}