-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy path3Sum.cpp
More file actions
47 lines (44 loc) · 1.38 KB
/
Copy path3Sum.cpp
File metadata and controls
47 lines (44 loc) · 1.38 KB
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
class Solution
{
public:
vector<vector<int>> threeSum(vector<int> &nums)
{
int n = nums.size();
sort(nums.begin(), nums.end());
int low, high;
vector<vector<int>> result;
for (int i = 0; i < n - 2; i++)
{
if (i == 0 || (i > 0 && nums[i] != nums[i - 1]))
{
low = i + 1;
high = n - 1;
int sum = 0 - nums[i];
while (low < high)
{
if (nums[low] + nums[high] == sum)
{
result.push_back({nums[i], nums[low], nums[high]});
// Incrementing value of low and high to avoid duplicates
while (low < high && nums[low] == nums[low + 1])
low++;
while (low < high && nums[high] == nums[high - 1])
high--;
// Incrementing once more to avoid duplicate element
low++;
high--;
}
else if ((nums[low] + nums[high]) > sum)
{
high--;
}
else
{
low++;
}
}
}
}
return result;
}
};