力扣-15-三数之和

题目:
15. 3Sum(medium)


解题思路:
本质上是一个双指针的应用,只是起始位置不确定,也需要循环遍历。
参考题解


代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer> > res = new ArrayList<>();
if(nums == null || nums.length < 3) return res;
Arrays.sort(nums);
for(int i = 0;i < nums.length;i++){
if(nums[i] > 0) break; //排序后,如果当前数字大于0,则后面这三个数之和一定大于零
if(i > 0 && nums[i] == nums[i-1]) continue;//去重,找不重复
int L = i + 1;
int R = nums.length - 1;
while(L < R){
int sum = nums[i] + nums[L] + nums[R];
if(sum == 0){
res.add(Arrays.asList(nums[i],nums[L],nums[R]));
while(L < R && nums[L] == nums[L+1]) L++;//去重
while(L < R && nums[R] == nums[R-1]) R--;//去重
L++;
R--;
}
else if(sum < 0) L++;
else if(sum > 0) R--;
}
}
return res;
}