标签:
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; } }
标签:
原文地址:http://www.cnblogs.com/fisherinbox/p/5263820.html