https://leetcode-cn.com/problems/3sum/submissions/
难度中等3668
给你一个包含 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
通过次数617,705提交次数1,858,277
class Solution {
public List<List<Integer>> threeSum(int[] nums) {
List<List<Integer>> ans = new ArrayList<List<Integer>>();
//先排序(避免重复元素)
Arrays.sort(nums);
/*
二重循环:
1.一层循环,确定target
2.二层循环,找到两个数 == target
*/
for(int a=0;a<nums.length;a++)
{
if(a>0 && nums[a] == nums[a-1]) continue;
int target = -nums[a];
for(int b = a+1,c=nums.length-1;b<c;b++)
{
if(b>a+1 && nums[b] == nums[b-1]) continue;
while(b<c && nums[b]+nums[c]>target) c--;
if(b!=c && (nums[b]+nums[c])==target)
{
List<Integer> l = new ArrayList<Integer>();
l.add(nums[a]);
l.add(nums[b]);
l.add(nums[c]);
ans.add(l);
}
}
}
return ans;
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/69183.html