【3Sum】cpp
题目:
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.
Note:
- Elements in a triplet (a,b,c) must be in non-descending order. (ie, a ≤ b ≤ c)
- The solution set must not contain duplicate triplets.
For example, given array S = {-1 0 1 2 -1 -4},
A solution set is:
(-1, 0, 1)
(-1, -1, 2)
代码:
class Solution {
public:
vector<vector<int> > threeSum(vector<int> &num) {
std::vector<std::vector<int> > ret_vector;
if (num.size() < )
{
return ret_vector;
}
// sort the vector
std::sort(num.begin(), num.end());
// visit all the left side element of the current element
const int target = ;
std::vector<int>::iterator end = num.end();
for (std::vector<int>::iterator i = num.begin(); i != end-; ++i){
// ignore first duplicate i
if ( i > num.begin() && *i==*(i-)) continue;
std::vector<int>::iterator j = i+;
std::vector<int>::iterator k = end-;
while (j<k){
const int tmp = *i+*j+*k;
if ( tmp < target ){
++j;
while ( *j==*(j-) && j<k ) ++j;
}
else if ( tmp > target ){
--k;
while ( *k==*(k+) && j<k ) --k;
}
else{
int tmp_triple[] = {*i,*j,*k};
std::vector<int> tmp_vector(tmp_triple,tmp_triple+);
ret_vector.push_back(tmp_vector);
++j;
--k;
while( *j==*(j-) && *k==*(k+) && j<k ) {
++j;
--k;
}
}
}
}
return ret_vector;
}
};
Tips:
1. 先对传入的vector排序,然后从前向后遍历。原则是:包含*i元素,且满足条件的triple都加入到返回结果中
2. 这里比较困难的一点是排除重复的triple,大概想一想原则,一些极端的case只能试验出来了
另,在mac上编辑的,不知道为什么用数组初始化vector编译不通过,所以采用了比较麻烦的传参方式
===============================================
第二次过这道题,大体思路记得不太清,重新学习了一下“排序+双指针夹逼”方法
参考的blog:http://www.cnblogs.com/tenosdoit/p/3649607.html
class Solution {
public:
vector<vector<int>> threeSum(vector<int>& nums) {
vector<vector<int> > ret;
if ( nums.size()< ) return ret;
std::sort(nums.begin(), nums.end());
for ( int i=; i<nums.size()-; ++i )
{
// skip the duplicates elements
if ( i> && nums[i]==nums[i-] ) continue;
Solution::TwoSum(ret, nums, i+, -nums[i]);
}
return ret;
}
static void TwoSum(vector<vector<int> >& ret, vector<int>& nums, int begin, int target)
{
vector<int> tmp;
int start = begin;
int end = nums.size()-;
while ( begin<end )
{
if ( nums[begin]+nums[end]<target ){
begin++;
}
else if ( nums[begin]+nums[end]>target ){
end--;
}
else
{
// add a triple
tmp.push_back(nums[start-]);
tmp.push_back(nums[begin]);
tmp.push_back(nums[end]);
ret.push_back(tmp);
tmp.clear();
// skip the duplicate elements
begin++;
while ( begin<end && nums[begin]==nums[begin-] ) begin++;
end--;
while ( begin<end && nums[end]==nums[end+] ) end--;
}
}
}
};
tips:
1. 先对数组进行排序
2. 固定一个元素,从其后面元素开始,采用两头夹逼的方式进行遍历。(为什么要两边夹逼?因为元素已经从小到大排序好了,向后移动begin可以增加两个元素的和,向前移动end可以减小两个元素的和;采用这样的方式,相当于进可往最大和靠,退可往最小值收,可以保证不漏)
3. 如果遇到重复的元素要跳过去,因为题中要求不能出现重复的triple。
【3Sum】cpp的更多相关文章
- 【4Sum】cpp
题目: Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = ...
- 【Permutations】cpp
题目: Given a collection of numbers, return all possible permutations. For example,[1,2,3] have the fo ...
- 【Subsets】cpp
题目: Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset ...
- 【Anagrams】 cpp
题目: Given an array of strings, return all groups of strings that are anagrams. Note: All inputs will ...
- 蓝桥杯 【dp?】.cpp
题意: 给出一个2*n的方格,当刷完某一个方格的漆后可以且只可以走到相邻的任何一格,即上 下 左 右 左上 左下 右上 右下.可以从任意一个格子开始刷墙,问有多少种刷法,因为随着n的增大方案数会变多, ...
- 【Triangle 】cpp
题目: Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjace ...
- 【N-Queens】cpp
题目: The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two que ...
- 【Combinations】cpp
题目: Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. For ex ...
- 【Candy】cpp
题目: There are N children standing in a line. Each child is assigned a rating value. You are giving c ...
随机推荐
- Tomcat中配置JAVA_HOME
一般来说我们在使用Tomcat时配置JAVA_HOME都是采用的系统环境变量直接配置,下面我提供一种新的配置思路. 这里我们使用的是免安装版的apache-tomcat-7.0.35,首先我们安装好j ...
- webpack前端构建工具学习总结(二)之loader的使用
Webpack 本身只能处理 JavaScript 模块,如果要处理其他类型的文件,就需要使用 loader 进行转换. Loader 可以理解为是模块和资源的转换器,它本身是一个函数,接受源文件作为 ...
- linux 命令——4 mkdir (转)
linux mkdir 命令用来创建指定的名称的目录,要求创建目录的用户在当前目录中具有写权限,并且指定的目录名不能是当前目录中已有的目录. 1.命令格式: mkdir [选项] 目录... 2.命令 ...
- 使用SAP云平台的destination消费Internet上的OData service
通过SAP云平台上的destination我们可以消费Internet上的OData service或者其他通过HTTP方式暴露出来的服务. 创建一个新的destination: 维护如下属性: 点击 ...
- javascript:理解DOM事件
首先,此文不讨论繁琐细节,但是考虑到读者的心灵感受,本着以积极向上的心态,在此还是会列举示例说明. 标题为理解DOM事件,那么在此拿一个简单的点击事件为例,希望大家看到这个例子后能触类旁通. DOM ...
- 查询Linux下已安装软件的版本
#rpm -qa | grep mysql
- python模块;opencv安装
http://www.lfd.uci.edu/~gohlke/pythonlibs/ 1. 步骤1. 下载Python2.73, 安装, 并配置Python环境变量:".\Program F ...
- 第29题:LeetCode54:Spiral Matrix螺旋矩阵
给定一个包含 m x n 个元素的矩阵(m 行, n 列),请按照顺时针螺旋顺序,返回矩阵中的所有元素. 示例 1: 输入: [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ...
- XML字符串解析
不多说,直接上代码: import java.io.StringReader; import org.dom4j.Document; import org.dom4j.DocumentExceptio ...
- 使用Maven开发一个简单的SpringData
1:创建Maven项目 2:添加依赖(修改pom.xml为以下代码) <project xmlns="http://maven.apache.org/POM/4.0.0" x ...