码迷,mamicode.com
首页 > 其他好文 > 详细

15. 三数之和

时间:2020-04-07 20:53:01      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:else   array   重复   span   not   整数   示例   als   --   

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

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

 

示例:

给定数组 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>> lists = new ArrayList<>();
        if(nums == null || nums.length == 0) return lists;
        Arrays.sort(nums);
        for(int i = 0;i < nums.length - 2;i++){
            //第一个数去重
            if(i > 0 && nums[i] == nums[i - 1]) continue;
            int l = i + 1,r = nums.length - 1;
            while(l < r){
                int sum = nums[i] + nums[l] + nums[r];
                if(sum == 0){
                    lists.add(new ArrayList<>(Arrays.asList(nums[i],nums[l],nums[r])));
                    //去重第2和3个数
                    while(r > l + 1 && nums[r] == nums[r - 1]) r--;
                    while(l < r - 1 && nums[l] == nums[l + 1]) l++;
                    r--;
                    l++;
                }else if(sum > 0){
                    r--;
                }else{
                    l++;
                }
            }
        }
        return lists;
        
        
    }
}

 

15. 三数之和

标签:else   array   重复   span   not   整数   示例   als   --   

原文地址:https://www.cnblogs.com/zzytxl/p/12655310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!