题目:
给你一个包含 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
C# Source code
public class Solution { public IList<IList<int>> ThreeSum(int[] nums) { IList<IList<int>> result = new List<IList<int>>(); int n = nums.Length; if (n >= 3) { nums = nums.OrderBy(i => i).ToArray(); // 枚举 a for (int first = 0; first < n; ++first) {// 需要和上一次枚举的数不相同 if (first > 0 && nums[first] == nums[first-1]) { continue; } // c 对应的指针初始指向数组的最右端 int third = n - 1; int target = -nums[first]; // 枚举 b for (int second = first + 1; second < n; ++second) {// 需要和上一次枚举的数不相同 if (second > first + 1 && nums[second] == nums[second-1]) { continue; } // 需要保证 b 的指针在 c 的指针的左侧 while (second < third && nums[second] + nums[third]>target) { --third; } // 如果指针重合,随着 b 后续的增加 // 就不会有满足 a+b+c=0 并且 b<c 的 c 了,可以退出循环 if (second==third) { break; } if (nums[second] + nums[third]==target) { List<int> ints = new List<int>() { nums[first], nums[second], nums[third] }; result.Add(ints); } } } } return result; } }
后记:
以上代码为参考C++题解所做,搞了个暴力枚举,实在是太垃圾,就不上代码了。
另外小子添加了一个判断数组长度是不是大于等于3,这个似乎有点多余(还导致了改代码后提交屡次不过,最后才发现是n>3导致,没考虑到n=3的情况)。
标签:third,nums,int,三数,枚举,second,first From: https://www.cnblogs.com/chengcanghai/p/16712067.html