三数之和
题目描述:
给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有和为 0 且不重复的三元组。
注意:答案中不可以包含重复的三元组。
示例:
输入:nums = [-1,0,1,2,-1,-4]
输出:[[-1,-1,2],[-1,0,1]]
输入:nums = []
输出:[]
输入:nums = [0]
输出:[]
先记录下我这个菜鸡的代码:
class Solution {
public List<List<Integer>> threeSum(int[] nums) {
List list = new ArrayList<ArrayList<Integer>>();
if (nums.length<3){
return list;
}
Arrays.sort(nums);
for (int x=0;x<=nums.length-3;x++){
if (x>0&&nums[x]==nums[x-1]){
continue;
}
int i=x+1;
int j=nums.length-1;
while (i<j){
if (nums[x]+nums[i]+nums[j]==0){
ArrayList<Integer> integers = new ArrayList<>();
integers.add(nums[x]);
integers.add(nums[i]);
integers.add(nums[j]);
list.add(integers);
int ii=i;
while (nums[ii]==nums[ii+1]){
ii++;
if(ii+1>j){
break;
}
}
i=ii+1;
continue;
}
if (nums[x]+nums[i]+nums[j]>0){
int jj=j;
while (nums[jj]==nums[jj-1]){
jj--;
if(jj-1<i){
break;
}
}
j=jj-1;
}
else if(nums[x]+nums[i]+nums[j]<0){
int ii=i;
while (nums[ii]==nums[ii+1]){
ii++;
if(ii+1>j){
break;
}
}
i=ii+1;
}
}
}
return list;
}
}
后面来分析官方的解答:
class Solution {
public List<List<Integer>> threeSum(int[] nums) {
int n = nums.length;
Arrays.sort(nums);
List<List<Integer>> ans = new ArrayList<List<Integer>>();
// 枚举 a
for (int first = 0; first < n; ++first) {
// 需要和上一次枚举的数不相同
if (first > 0 && nums[first] == nums[first - 1]) {
continue;
}
// c 对应的指针初始指向数组的最右端
int third = n - 1;
int target = -nums[first];
// 枚举 b
for (int second = first + 1; second < n; ++second) {
// 需要和上一次枚举的数不相同
if (second > first + 1 && nums[second] == nums[second - 1]) {
continue;
}
// 需要保证 b 的指针在 c 的指针的左侧
while (second < third && nums[second] + nums[third] > target) {
--third;
}
// 如果指针重合,随着 b 后续的增加
// 就不会有满足 a+b+c=0 并且 b<c 的 c 了,可以退出循环
if (second == third) {
break;
}
if (nums[second] + nums[third] == target) {
List<Integer> list = new ArrayList<Integer>();
list.add(nums[first]);
list.add(nums[second]);
list.add(nums[third]);
ans.add(list);
}
}
}
return ans;
}
}
个人解法是固定a ,然后b,c指针一起移动,而官方解法是,固定a,b,让c指针一直往左移动。