给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。
注意:答案中不可以包含重复的三元组。
例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],
满足要求的三元组集合为:
[
[-1, 0, 1],
[-1, -1, 2]
]
解1:题目不难,搞了1个小时没有ac,最关键的是 if (i > 0 && nums[i] == nums[i - 1]) { continue; }没有判断……
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer>> rtnList = new ArrayList<List<Integer>>();
Arrays.sort(nums);
for (int i = 0; i < nums.length - 2; i++) {
if (i > 0 && nums[i] == nums[i - 1]) {
continue;
}
int left = i + 1;
int right = nums.length - 1;
while (left < right) {
if (nums[left] + nums[right] + nums[i] > 0) {
right--;
} else if (nums[left] + nums[right] + nums[i] < 0) {
left++;
} else {
rtnList.add(Arrays.asList(nums[i], nums[left], nums[right]));
right--;
while (left < right && nums[right] == nums[right + 1]) {
right--;
}
}
}
}
return rtnList;
}