LeetCode-018四数之和

public List<List<Integer>> fourSum(int[] nums, int target) {

    List<List<Integer>> res = new ArrayList<>();
    if(nums.length < 4){
        return res;
    }
    Arrays.sort(nums);//排序的作用在暴力解法下似乎效果不大 但是可以去重
    int len = nums.length;
    for(int i = 0;i < len - 3;i++){//第一层只要到倒数第四个后面jkl兜底
        int a = nums[i];
        for(int j = i+1;j<len-2;j++){//第二层只要到倒数第三个后面kl兜底
            int b = nums[j];
            for(int k = j+1;k<len-1;k++){//第三层只要到倒数第二个后面l兜底
                int c = nums[k];
                for(int l = k+1;l<len;l++){//最后一层兜底之王
                    int d = nums[l];
                    if(a+b+c+d==target){//如果存在这组数据满足条件
                        List<Integer> temp = new ArrayList<>();
                        temp.add(a);
                        temp.add(b);
                        temp.add(c);
                        temp.add(d);
                        if(!res.contains(temp)) {//且这组数据不重复
                            res.add(temp);
                        }
                    }
                }
            }
        }
    }

    return res;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值