-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path3Sum.cpp
More file actions
36 lines (36 loc) · 1014 Bytes
/
3Sum.cpp
File metadata and controls
36 lines (36 loc) · 1014 Bytes
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
class Solution
{
public:
vector<vector<int> > threeSum(vector<int> &num)
{
vector<vector<int>> result;
if (num.size() >= 3)
{
sort(num.begin(), num.end());
for (size_t i = 0; i + 2 < num.size(); ++i)
{
size_t j = i + 1;
size_t k = num.size() - 1;
while (j < k)
{
int sum = num[i] + num[j] + num[k];
if (sum < 0)
{
++j;
}
else if (sum > 0)
{
--k;
}
else
{
result.push_back(vector<int>({num[i], num[j++], num[k--]}));
}
}
}
}
sort(result.begin(), result.end());
result.erase(unique(result.begin(), result.end()), result.end());
return result;
}
};