给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有和为 0 且不重复的三元组。
注意:答案中不可以包含重复的三元组。
示例 1:
输入:nums = [-1,0,1,2,-1,-4]
输出:[[-1,-1,2],[-1,0,1]]
示例 2:输入:nums = []
输出:[]
示例 3:输入:nums = [0]
输出:[]
提示:
0 <= nums.length <= 3000
-105 <= nums[i] <= 105
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/3sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
//时间复杂度O(n^2) //空间复杂度O(nlogn) public List<List<Integer>> threeSum(int[] nums) { if(nums == null || nums.length < 3){ return new ArrayList<>(); } Arrays.sort(nums); // O(nlogn) int length = nums.length; List<List<Integer>> result = new ArrayList<>(); //用简单的方法试试 for(int i = 0; i < length; i++){ if (nums[i] > 0) { // 当前数大于 0,后面的数都比它大,后面的数跟它相加肯定也是大于0的,就不用循环了 break; } if (i > 0 && nums[i] == nums[i - 1]){ // 去掉重复情况 continue; } int left = i + 1, right = nums.length - 1; while(left < right){ int sum = nums[i] + nums[left] + nums[right]; if(sum == 0){ result.add(Arrays.asList(nums[i],nums[left],nums[right])); //左边去重 while(left < right && nums[left] == nums[left+1]){ left++; } //右边去重 while(left < right && nums[right] == nums[right-1]){ right--; } left++; right--; } else if(sum < 0) { left++; } else{ right--; } } } return result; }