题目

给出一个有n个整数的数组S,在S中找到三个整数a, b, c,找到所有使得a + b + c = 0的三元组。

样例

如S = {-1 0 1 2 -1 -4}, 你需要返回的三元组集合的是:

(-1, 0, 1)

(-1, -1, 2)

注意

在三元组(a, b, c),要求a <= b <= c。

结果不能包含重复的三元组。

解题:

法一:直接暴力,时间复杂度是O(N3)

public class Solution {
/**
* @param numbers : Give an array numbers of n integer
* @return : Find all unique triplets in the array which gives the sum of zero.
*/
public ArrayList<ArrayList<Integer>> threeSum(int[] numbers) {
// write your code here ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();
if(numbers == null || numbers.length<3)
return result;
for(int i = 0;i< numbers.length - 2 ; i++){
ArrayList<Integer> path = new ArrayList<Integer>();
for(int j = i+1;j < numbers.length - 1 ; j++){
for(int k = j+ 1 ; k < numbers.length ; k++)
if(numbers[i] + numbers[j] + numbers[k] == 0 ){
path = sort3(numbers[i],numbers[j],numbers[k]);
if(result.contains(path)==false)
result.add(path);
}
}
}
return result;
}
public ArrayList<Integer> sort3(int a,int b,int c){
ArrayList<Integer> path = new ArrayList<Integer>();
if(a>b){
int tmp = a;
a = b;
b = tmp;
}
if(c<=a){
path.add(c);
path.add(a);
path.add(b);
}else if(c>=b){
path.add(a);
path.add(b);
path.add(c);
}else{
path.add(a);
path.add(c);
path.add(b);
}
return path; } }

Java Code

在运行到94%的测试数据的时候WA,下面答案只是第三个和第二个的顺序不一样,怎么能就算错了?

法二:

将原数组存放中ArrayList中,通过判断 -(nums[i]+nums[j]) 是否在ArrayList中,少了第三个for循环,时间复杂度O(N2)增加了空间发杂度O(N)

public class Solution {
/**
* @param numbers : Give an array numbers of n integer
* @return : Find all unique triplets in the array which gives the sum of zero.
*/
public ArrayList<ArrayList<Integer>> threeSum(int[] numbers) {
// write your code here
ArrayList<Integer> path = new ArrayList<Integer>();
ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();
if(numbers == null || numbers.length<3)
return result;
ArrayList<Integer> nums = new ArrayList<Integer>();
for(int i = 0 ;i < numbers.length ; i++)
nums.add(numbers[i]);
for(int i = 0;i< nums.size() - 2;i++){
for(int j = i+ 1; j<nums.size() -1;j++){
int sum = -((Integer)nums.get(i) + (Integer)nums.get(j));
if(nums.contains(sum) && nums.indexOf(sum) !=j && nums.indexOf(sum) !=i){
path = sort3(sum,nums.get(i),nums.get(j));
if(result.contains(path)==false)
result.add(path);
}
}
}
return result;
}
public ArrayList<Integer> sort3(int a,int b,int c){
ArrayList<Integer> path = new ArrayList<Integer>();
if(a>b){
int tmp = a;
a = b;
b = tmp;
}
if(c<=a){
path.add(c);
path.add(a);
path.add(b);
}else if(c>=b){
path.add(a);
path.add(b);
path.add(c);
}else{
path.add(a);
path.add(c);
path.add(b);
}
return path; } }

Java Code

但是运行还是出现上面的情况

法三:

三个数的和基础还是两个数的和两个数的和||,a+b+c = 0,等价于a+b = -c,这样就和两个数的和|| 很类似,当然也可以参考两个数的和I求解。

先对数组排序,排序后的数组,定义其实节点i,然后对i+1 到len内的所有节点进行两端遍历,这里利用二分查找的思想,

设两端的两个下标是left 和right ,显然 sum=nums[i] + nums[left] + nums[right] >0时候 ,right--,小于0的时候left++,等于0的时候就是答案。时间复杂度O(NlogN)

public class Solution {
/**
* @param numbers : Give an array numbers of n integer
* @return : Find all unique triplets in the array which gives the sum of zero.
*/
public ArrayList<ArrayList<Integer>> threeSum(int[] numbers) {
// write your code here ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();
if(numbers == null || numbers.length<3)
return result;
Arrays.sort(numbers);
for(int i = 0;i<numbers.length; i++){
int left = i+ 1;
int right = numbers.length - 1;
while(left < right){
int sum = numbers[i] + numbers[left] + numbers[right];
ArrayList<Integer> path = new ArrayList<Integer>();
if(sum==0){
path.add(numbers[i]);
path.add(numbers[left]);
path.add(numbers[right]);
if(result.contains(path)==false)
result.add(path);
left++;
right--;
}else if(sum>0){
right--;
}else{
left++;
}
}
} return result;
} }

Java Code

总耗时: 1094 ms

class Solution:
"""
@param numbersbers : Give an array numbersbers of n integer
@return : Find all unique triplets in the array which gives the sum of zero.
"""
def threeSum(self, numbers):
# write your code here
result = []
if numbers == None or len(numbers) < 3:
return result
numbers.sort()
numlen = len(numbers)
for i in range(numlen):
left = i + 1
right = numlen - 1
while left < right:
sum = numbers[i] + numbers[left] + numbers[right]
if sum==0:
path = [numbers[i],numbers[left],numbers[right]]
if path not in result:
result.append(path)
left +=1
right -=1
elif sum>0:
right -=1
else:
left +=1 return result

Python Code

总耗时: 195 ms

lintcode:三数之和的更多相关文章

  1. lintcode: 三数之和II

    题目 三数之和 II 给一个包含n个整数的数组S, 找到和与给定整数target最接近的三元组,返回这三个数的和. 样例 例如S = .  和最接近1的三元组是 -1 + 2 + 1 = 2. 注意 ...

  2. [LeetCode] 3Sum Smaller 三数之和较小值

    Given an array of n integers nums and a target, find the number of index triplets i, j, k with 0 < ...

  3. [LeetCode] 3Sum Closest 最近三数之和

    Given an array S of n integers, find three integers in S such that the sum is closest to a given num ...

  4. [LeetCode] 3Sum 三数之和

    Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all un ...

  5. LeetCode 16. 3Sum Closest. (最接近的三数之和)

    Given an array S of n integers, find three integers in S such that the sum is closest to a given num ...

  6. LeeCode数组第15题三数之和

    题目:三数之和 内容: 给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组. 注意:答案中 ...

  7. LeetCode第十六题-找出数组中三数之和最接近目标值的答案

    3Sum Closest 问题简介: 给定n个整数的数组nums和整数目标,在nums中找到三个整数,使得总和最接近目标,返回三个整数的总和,可以假设每个输入都只有一个解决方案 举例: 给定数组:nu ...

  8. 南大算法设计与分析课程OJ答案代码(4)--变位词、三数之和

    问题 A: 变位词 时间限制: 2 Sec  内存限制: 10 MB提交: 322  解决: 59提交 状态 算法问答 题目描述 请大家在做oj题之前,仔细阅读关于抄袭的说明http://www.bi ...

  9. python三数之和

    给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组. 注意:答案中不可以包含重复的三元组. ...

随机推荐

  1. js设计模式(5)---外观模式

    0.前言 早上好,今天天气不错,估计有35度吧,坐在空调室里相当惬意,那么酒足饭饱之后就应该干些正事了. 1. 为什么使用外观模式 外观模式提供了一个高层接口,封装一些复杂操作或繁琐行为,方便调用.门 ...

  2. 常用HTML meta 标签属性(网站兼容与优化需要),meta标签

    常用HTML meta 标签属性(网站兼容与优化需要),meta标签 标签提供关于HTML文档的元数据.元数据不会显示在页面上,但是对于机器是可读的.它可用于浏览器(如何显示内容或重新加载页面),搜索 ...

  3. fastclick插件 导致 input[type="date"] 无法触发问题解决方案

    鄙人才疏学浅,新人一枚,不足之处还请谅解,写下这个也只是为了给大家分享一下我解决这个BUG的方法,也是自己的一个笔记. 首先,我们使用fastclick插件的初衷是解决“tap”事件“点透”的BUG: ...

  4. linux服务器修改ssh默认22端口方法

    1.登录服务器,打开sshd_config文件 # vim /etc/ssh/sshd_config 2.找到#Port 22,默认是注释掉的,先把前面的#号去掉,再插入一行设置成你想要的端口号,注意 ...

  5. Sigma.js

    http://www.cnblogs.com/kingboy2008/p/6117741.html

  6. SQLserver Delete from where 与Oracle delete from where 的差异

    1.SQLserver 版本: select @@version; Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64) Dec 28 2012 20 ...

  7. [Java][RCP] 引入第三方jar包时出错: XXXcannot be found XXX

    为什么会这样? 下面的博客有介绍,不在累赘 http://dengmin.iteye.com/blog/260585 这些博客貌似忘掉了一点,或者是我本地的Eclipse新建的项目Version不够高 ...

  8. STM32普通定时器实现延时函数

    /* SystemFrequency / 1000 1ms中断一次 * SystemFrequency / 100000 10us中断一次 * SystemFrequency / 1000000 1u ...

  9. nginx学习之一

    http://tengine.taobao.org/book/chapter_02.html

  10. 被git extensions给坑了,Not owner 解决办法

    我只遇到这一种情况,不能访问git文件主库, 清空以前的历史文件,包括默认配置文件,重新安装一遍git extension,然后设置账号和密码, 在打开bash设置私钥和公钥 把公钥添加到你的git的 ...