-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy path4Sum.cs
executable file
·85 lines (81 loc) · 5.21 KB
/
4Sum.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Source : https://leetcode.com/problems/4sum/
// Author : codeyu
// Date : Thursday, October 6, 2016 3:30:50 PM
/***************************************************************************************
*
* Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target.
*
* Note: The solution set must not contain duplicate quadruplets.
*
*
*
* For example, given array S = [1, 0, -1, 0, -2, 2], and target = 0.
*
* A solution set is:
* [
* [-1, 0, 0, 1],
* [-2, -1, 1, 2],
* [-2, 0, 0, 2]
* ]
*
*
**********************************************************************************/
using System.Collections.Generic;
using Algorithms.Utils;
namespace Algorithms
{
public class Solution018
{
public static IList<IList<int>> FourSum(int[] nums, int target)
{
int n = nums.Length;
IList<IList<int>> res = new List<IList<int>>();
Helper.Sort(nums);
for(var i = 0; i < n-3; i++)
{
if(i > 0 && nums[i] == nums[i-1])
{
continue;
}
for(int j = i + 1; j < n-2; j++)
{
if(j > i+1 && nums[j] == nums[j-1])
{
continue;
}
int target2 = target - nums[i] - nums[j];
int head = j+1,tail = n-1;
while(head < tail)
{
int tmp = nums[head] + nums[tail];
if(tmp > target2)
{
tail--;
}
else if(tmp < target2)
{
head++;
}
else
{
res.Add(new List<int>{nums[i],nums[j],nums[head],nums[tail]});
int k =head + 1;
while(k < tail && nums[k] == nums[head])
{
k++;
}
head = k;
k = tail -1;
while(k > head && nums[k] == nums[tail])
{
k--;
}
tail = k;
}
}
}
}
return res;
}
}
}