LeetCode刷题记录—3Sum

3Sum
Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
给定一个n位整型数的数组,是否存在三个数字a, b, c满足a+b+c=0?找出数组中所有满足条件的三元祖
Note:
The solution set must not contain duplicate triplets.
结果集中不能包含重复的三元组
Example:
Given array nums = [-1, 0, 1, 2, -1, -4],
A solution set is:
[
[-1, 0, 1],
[-1, -1, 2]
]
解题思路:
1. 首先,拿到这道题,我第一个想法是,遍历每一个数,取其相反数作为target。在剩下的数字当中,找出两个数之和为target的集合。时间复杂度为O(n)2,就拿示例来说,这样做存在重复的组合,如:[-1, 0, 1], [0, 1, -1]。
因此,就必须考虑去从的问题。为了去除重复,考虑用一个Set集合来保存已经添加的三元组,但是在查重的时候,必须要遍历Set中每一个三元组的每一个元素,这样就造成时间复杂度为O(n)3。这样肯定会超时,因此这个思路不可行。
2. 于是尝试用网上的思路。
首先将数组进行排序(涉及到数组的问题都可以优先考虑排序),得到排序后的数组:{x0, x1, …, xn-1}
1) 同样的针对每一个数字取相反数为target,查找剩余数字中和为target的数字。这里我们不在逐个遍历每一个数,那样会造成TLE(Time Limited Exceeded)。
2)首先我们令a = xi, t=-a, p、q两个指针分别指向xi+1,xn-1。要满足等式
a + b + c = 0 ⑴
那么就要找到满足等式[p] + [q] = t这样的两个数。在移动p和q两个指针的过程中,p递增,q递减。p和q之和存在三种可能:
a)[p] + [q] > t 此时q左移(减少总和)
b)[p] + [q] < t 此时p右移(增大总和)
c)[p] + [q] = t 此时满足等式(1),即为所求解
d)注:[q]表示q指向的元素的值
e) p = q时结束查找过程
3)在遍历过程中,会遇到重复的三元组。
a) 对于第一个数a,假设存在下标i,满足xi=xi+1,那么包含xi的三元祖与包含xi+1的三元祖是等价的。此时需要跳过重复的数字,直到找到第一个下标j,满足x_j≠x_i。
b) 当确定了第一个下标i之后,指针p和q指向的数字中仍然包含重复的元素。此时,我们只需要简单的跳过重复数字即可。
4)优化点:
a) 对于第一个数a,只需要遍历到倒数第3个数即可(因为是排好序的,a再往右走就找不到满足条件的数字了)。
b) 当第一个数字a > 0时,停止遍历。因为有序数组,a大于0时,右边的数字都大于0。

class Solution {
    public List<List<Integer>> threeSum(int[] nums) {
        List<List<Integer>> results = new ArrayList<>();
        if (null == nums || nums.length == 0) {
            return results;
        }
        int n = nums.length;
        sort(nums);
        int last = Integer.MIN_VALUE;
        for (int i = 0 ; i < n - 2; i++) {
            int a = nums[i];
            if (last == a) {
                continue;
            } else {
                last = a;
            }
            int t = -a;
            int l = i + 1, r = n - 1;
            if (a == 0 && nums[l] > 0 || a> 0) {
                break;
            }
            while (l < r) {
                int sum = nums[l] + nums[r];
                if (sum < t) {
                    while (l < r && nums[l] + nums[r] < t) {
                        l++;
                    }
                }
                else if (sum > t){
                    while (l < r && nums[l] + nums[r] > t) {
                        r--;
                    }
                }
                else {
                    List<Integer> ret = new ArrayList<>();
                    ret.add(nums[i]); ret.add(nums[l]); ret.add(nums[r]);
                    results.add(ret);
                    // jump duplicate
                    while (l < r && nums[l] == nums[l + 1]) {
                        l++;
                    }
                    // jump duplicate
                    while (l < r && nums[r] == nums[r - 1]) {
                        r--;
                    }
                    l++; r--;
                }
            }
        }
        return results;
    }

    private void sort(int[] nums) {
        Arrays.sort(nums);
    }
        
}

p.s.:本文根据网上搜索的解题思路加上自己的理解写成,如有不当之处,欢迎指正。顺带说一句,CSDN编辑器真心难用啊,从word上复制上来的文本格式完全变了,实在不想再改格式了

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值