forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3sum_1_AC.cpp
50 lines (46 loc) · 1.18 KB
/
3sum_1_AC.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
48
49
50
#include <algorithm>
using std::sort;
class Solution {
public:
vector<vector<int>> threeSum(vector<int>& nums) {
vector<vector<int>> res;
int n = nums.size();
if (n < 3) {
return res;
}
sort(nums.begin(), nums.end());
vector<int> t(3);
int i, j, k;
int val;
i = 0;
while (i < n && nums[i] <= 0) {
t[0] = nums[i];
j = i + 1;
k = n - 1;
while (j < k) {
val = nums[i] + nums[j] + nums[k];
if (val < 0) {
++j;
continue;
}
if (val > 0) {
--k;
continue;
}
t[1] = nums[j];
t[2] = nums[k];
res.push_back(t);
while (j + 1 < k && nums[j] == nums[j + 1]) {
++j;
}
++j;
}
// Skip duplicate results
while (i + 1 < n && nums[i] == nums[i + 1]) {
++i;
}
++i;
}
return res;
}
};