四數之和
阿新 • • 發佈:2018-12-20
給定一個包含 n 個整數的陣列 nums
和一個目標值 target
,判斷 nums
中是否存在四個元素 a,b,c 和 d ,使得 a + b + c + d 的值與 target
相等?找出所有滿足條件且不重複的四元組。
注意:
答案中不可以包含重複的四元組。
示例:
給定陣列 nums = [1, 0, -1, 0, -2, 2],和 target = 0。 滿足要求的四元組集合為: [ [-1, 0, 0, 1], [-2, -1, 1, 2], [-2, 0, 0, 2] ]
public List<List<Integer>> fourSum(int[] nums, int target) { List<List<Integer>> result = new ArrayList<>(); Arrays.sort(nums); for(int i = 0; i < nums.length - 3; i++){ if(i > 0 && nums[i] == nums[i - 1]){ continue; } for(int j = i + 1; j < nums.length - 2; j++){ if(j > i + 1 && nums[j] == nums[j + 1]){ continue; } int left = j + 1; int right = nums.length - 1; while(left < right){ if(nums[i] + nums[j] + nums[left] + nums[right] < target){ left++; }else if(nums[i] + nums[j] + nums[left] + nums[right] > target){ right--; }else{ result.add(Arrays.asList(nums[i], nums[j], nums[left], nums[right])); left++; right--; while(left < rigth && nums[left] == nums[left - 1]) left++; while(left < right && nums[right] == nums[right + 1]) rigth--; } } } return result; } }