找出数组中三个数之和为0的组合

找出数组中三个数之和为0的组合

题目

  1. 给定一个无序可重复整数序列,当该序列中任意三个数的和等于0,输出这三个数。如:序列nums=[-1,0,1,2,-1,-4],输出[[-1,0,1],[-1,-1,2]]

思路

首先对数组不同位进行两两结合,在进行一轮循环,看刚才结合的两组相加和不同位的数之和是否等于0

代码

public class ThreeNumbersSum {

    public static void main(String[] args) {
        int[] nums = new int[]{-1, 0, 1, 2, -3, -4};
        List<int[]> ts = ts(nums);
        ts.forEach(arr -> {
            System.out.println(Arrays.toString(arr));
        });
    }

    public static List<int[]> ts(int[] nums) {

        if (nums == null || nums.length < 3) {
            return new ArrayList<>();
        }
        int length = nums.length;
        List<int[]> resultList = new ArrayList<>();
        if (length == 3) {
            if (nums[0] + nums[1] + nums[2] != 0) {
                return null;
            } else {
                resultList.add(nums);
                return resultList;
            }
        }

        // 将数组中不同位置的数进行求和,并记录位置
        List<Temp> maps = new ArrayList<>();
        for (int i = 0; i < length - 1; i++) {
            for (int j = i + 1; j < length; j++) {
                Temp temp = new Temp();
                temp.index[0] = i;
                temp.index[1] = j;
                temp.sum = nums[i] + nums[j];
                maps.add(temp);
            }
        }
        // 将第三个数和刚才那两个数之和相加,看是否等于0
        for (int i = 0; i < length; i++) {
            for (Temp temp : maps) {
                int[] index = temp.index;
                if (index[0] >= i || index[1] >= i) {
                    continue;
                }
                if (temp.sum + nums[i] == 0) {
                    temp.index[2] = i;
                    resultList.add(new int[]{nums[index[0]], nums[index[1]], nums[i]});
                }
            }
        }

        return resultList;
    }
}
class Temp {

    int[] index = new int[3];

    int sum;
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值