-
Notifications
You must be signed in to change notification settings - Fork 0
/
Q5_三数之和.java
78 lines (72 loc) · 2.04 KB
/
Q5_三数之和.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
package com.algorithm.demo.geek;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* 15. 三数之和
* 给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有和为 0 且不重复的三元组。
* <p>
* 注意:答案中不可以包含重复的三元组。
* <p>
* 示例 1:
* <p>
* 输入:nums = [-1,0,1,2,-1,-4]
* 输出:[[-1,-1,2],[-1,0,1]]
* 示例 2:
* <p>
* 输入:nums = []
* 输出:[]
* 示例 3:
* <p>
* 输入:nums = [0]
* 输出:[]
* <p>
* 提示:
* <p>
* 0 <= nums.length <= 3000
* -105 <= nums[i] <= 105
*/
public class Q5_三数之和 {
public static void main(String[] args) {
}
/**
* a + b = -c (target)
* 1.暴力求解 O(n^3)
* 2.hash表记录
* 3.左右下标推进, 左右夹逼
*
* @param nums
* @return
*/
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer>> result = new ArrayList<>();
if (nums.length < 3) {
return result;
}
Arrays.sort(nums);
ArrayList<Integer> temp = null;
for (int i = 0; i < nums.length; i++) {
if (i > 0 && nums[i] == nums[i - 1]) continue;
int left = i + 1;
int right = nums.length - 1;
while (right > left) {
int sum = nums[i] + nums[left] + nums[right];
if (sum == 0) {
temp = new ArrayList<>();
temp.add(nums[i]);
temp.add(nums[left]);
temp.add(nums[right]);
result.add(temp);
while (left < right && nums[left] == nums[left + 1]) left++;
while (left + 1 < right && nums[right] == nums[right - 1]) right--;
}
if (sum <= 0) {
left++;
} else {
right--;
}
}
}
return result;
}
}