15. 三数之和

链接:https://leetcode-cn.com/problems/3sum/

 

中文题目:

给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。注意:答案中不可以包含重复的三元组。

 

英文题目:

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.Note:The solution set must not contain duplicate triplets.

 

示例:

给定数组 nums = [-1, 0, 1, 2, -1, -4],满足要求的三元组集合为:

[

[-1, 0, 1],

[-1, -1, 2]

]

 

思路:

将数组排好序,先确定下一个数字,从这个数字右边第一位为第二个数,排序数组最后一个数为第三个输。这样做的好处是,第二个数只能往右边找,第三个数只能往左边找。

 

 

题解:


class Solution {
    public List<List<Integer>> threeSum(int[] nums) {
        List<List<Integer>> result = new ArrayList<>();
        // 先将数组排好序,可将时间复杂度减少至O(n*n);
        Arrays.sort(nums);

        // 只需判断n - 2位即可
        for (int i = 0; i < nums.length - 2; ++i) {
            // 从第二位开始,若与第一位相同,根据不重复原则去重
            if (i > 0 && nums[i - 1] == nums[i]) {
                continue;
            }
            // 第二位数从i + 1开始,第三位数从最末尾开始
            // 当第二位不满足时,只需要向右调大即可,同理第三位向左调小
            int second = i + 1, third = nums.length - 1;
            while (second < third) {
                int answer = nums[i] + nums[second] + nums[third];
                // 满足条件
                if (answer == 0) {
                    List<Integer> resTemp = new ArrayList<>();
                    resTemp.add(nums[i]);
                    resTemp.add(nums[second]);
                    resTemp.add(nums[third]);
                    result.add(resTemp);
                    // 加入时,将第二位第三位同时位移,避免出现相同的数字
                    ++second;
                    --third;

                    // 去重需去干净,防治出现连续相等的数出现
                    while (second < third && nums[second - 1] == nums[second]) {
                        ++second;
                    }
                    while (second < third && nums[third] == nums[third + 1]) {
                        --third;
                    }
                } else if (answer < 0) {
                    // 三数之和小于0,则将第二个数调大再判断,毕竟第三个数没办法调大了
                    ++second;
                } else {
                    // 同理
                    --third;
                }
            }
        }
        return result;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值