-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path3-Sum.cpp
47 lines (42 loc) · 1.39 KB
/
3-Sum.cpp
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) {
//
vector<vector<int>> res;
//sort
sort(nums.begin(),nums.end());
for(unsigned int i = 0; i < nums.size();i++){
// initialize left and right
//to handle duplicates
if(i > 0 && nums[i]==nums[i-1])
continue;
int l = i + 1;
int r = nums.size() - 1;
int x = nums[i];
while (l < r)
{
if (x + nums[l] + nums[r] == 0) {
res.push_back(vector<int>{x,nums[l],nums[r]});
//to handle duplicates
while (l<r && nums[l] == nums[l+1])
l++;
// to handle duplicates
while (l<r && nums[r] == nums[r-1])
r--;
l++;
r--;
//break;
}
// If sum of three elements is less
// than zero then increment in left
else if (x + nums[l] + nums[r] < 0)
l++;
// if sum is greater than zero than
// decrement in right side
else
r--;
}
}
return res;
}
};