每周算法题(2019-06-16)

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

注意:答案中不可以包含重复的三元组。

例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],

满足要求的三元组集合为:
[
[-1, 0, 1],
[-1, -1, 2]
]

   public List> threeSum(int[] nums) {

        List> list2 = new ArrayList>();
        // 判断给定数组是否存在三个及以上元素
        if(nums.length >= 3){
            // 对数组排序并放入HashMap中
            Arrays.sort(nums);
            Map map = new HashMap<>();
            for(int i =0; i list = null;
            for(int i=0;i j){
                        list = new ArrayList();
                        list.add(nums[i]);
                        list.add(nums[j]);
                        list.add(c);
                        if(!list2.contains(list)){
                            list2.add(list);
                        }
                    }
                }
            }
        }
        return list2;
    }

你可能感兴趣的:(每周算法题(2019-06-16))