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

Leetcode015

时间:2016-03-10 23:22:32      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

public class S015 {
    //看了答案
    public List<List<Integer>> threeSum(int[] nums) {
        Arrays.sort(nums);
        List<List<Integer>> result = new ArrayList<List<Integer>>();
        for(int i =0;i<nums.length;i++){
            if(i>0&&nums[i]==nums[i-1]){
                continue;//重复的直接跳过
            }
            int left = i+1;//从i+1开始也是防止重复的办法
            int right = nums.length-1;
            while(left<right){
                if(nums[left]+nums[right] == -nums[i]){
                    List<Integer> temp = new ArrayList<Integer>();//必须每次新建
                    temp.add(nums[i]);
                    temp.add(nums[left]);
                    temp.add(nums[right]);
                    Collections.sort(temp);
                    result.add(temp);
                    //特别注意下面两个while循环
                    left++;
                    right--;//防止重复                        
                    while(left<right&&nums[left]==nums[left-1]){
                        left++;//防止重复   
                    } 
                    while(left<right&&nums[right]==nums[right+1]){
                        right--;//防止重复   
                    }         
                    //这两个条件特别重要,思考一下为何分别是left++和right--;
                }else if(nums[left]+nums[right] < -nums[i]){
                    left++;
                }else{
                    right--;
                }
            }
        }
        return result;
    }
}

 

Leetcode015

标签:

原文地址:http://www.cnblogs.com/fisherinbox/p/5263820.html

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