加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
leetcode15.cpp 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
jamesjd_handsome 提交于 2018-12-12 14:13 . 提交leetcode15
#include <vector>
#include <map>
#include <iostream>
#include <algorithm>
using namespace std;
class Solution
{
public:
vector<vector<int>> threeSum(vector<int> &nums)
{
vector<vector<int>> res;
sort(nums.begin(), nums.end());
int oldi = INT32_MAX;
auto i = nums.begin() - 1;
while (i < nums.end() - 2)
{
while (*++i == oldi)
;
oldi = *i;
auto begin = i;
int old = *i - 1;
auto end = nums.end();
while (true)
{
//
while (*(++begin) == old)
;
if (begin >= end)
break;
old = *begin;
int sub = -*i - *begin;
auto end1 = lower_bound(begin + 1, end, sub);
if (end1 != end && *end1 == sub && end1 != begin)
res.push_back(vector<int>{*i, *begin, sub});
end = end1;
}
}
return res;
}
};
int main(int argc, char const *argv[])
{
Solution a;
vector<int> vc{-2, 0, 1, 1, 2};
auto res = a.threeSum(vc);
for (auto &v : res)
{
for (auto &x : v)
cout << x << " ";
cout << endl;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化