题目描述
给定一个包含 n 个整数的数组 nums
,判断 nums
中是否存在三个元素 a,b,c ,使得 _a + b + c = _0 ?找出所有满足条件且不重复的三元组。
注意:答案中不可以包含重复的三元组。
例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],
满足要求的三元组集合为:
[
[-1, 0, 1],
[-1, -1, 2]
]
题解
参考论坛大神-Java-solution),排序配合双指针减少一层循环。
public IList<IList<int>> ThreeSum(int[] nums)
{
nums = nums.OrderBy(n => n).ToArray();
IList<IList<int>> res = new List<IList<int>>();
for (var i = 0; i < nums.Length - 2; i++)
{
if (i == 0 || (i > 0 && nums[i] != nums[i - 1]))
{
int low = i + 1, high = nums.Length - 1, sum = 0 - nums[i];
while (low < high)
{
if (nums[low] + nums[high] == sum)
{
res.Add(new[] { nums[i], nums[low], nums[high] });
while (low < high && nums[low] == nums[low + 1]) low++;
while (low < high && nums[high] == nums[high - 1]) high--;
low++;
high--;
}
else if (nums[low] + nums[high] < sum)
{
low++;
}
else
{
high--;
}
}
}
}
return res;
}