[LeetCode][Java] 4Sum
题目:
Given an array S of n integers, are there elements a, b, c, and d in S such
that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target.
Note:
- Elements in a quadruplet (a,b,c,d) must be in non-descending order. (ie, a ≤ b ≤ c ≤ d)
- The solution set must not contain duplicate quadruplets.
For example, given array S = {1 0 -1 0 -2 2}, and target = 0. A solution set is:
(-1, 0, 0, 1)
(-2, -1, 1, 2)
(-2, 0, 0, 2)
题意:
给定一个包括n个整数的数组S,在数组S中是否存在元素a,b,c和d,使得 a + b + c + d =
target.找出数组S中全部这种组合。
注意:
1.这四个元素必须是升序排列(ie, a ≤ b ≤ c ≤ d)
2.终于结果中不嫩包括反复的解。
For example, given array S = {1 0 -1 0 -2 2}, and target = 0. A solution set is:
(-1, 0, 0, 1)
(-2, -1, 1, 2)
(-2, 0, 0, 2)
算法分析:
* 利用了题目《3Sum》的代码 https://leetcode.com/problems/3sum/
* 首先升序排列数组,然后从第一个元素開始依次遍历《3Sum》算法,目标值为(target-nums[i]),遍历的数组为该元素后面的数组
* 这样既满足终于的arraylist中元素升序排列,也不会出现反复。由于每次以其为開始。进行遍历的元素都是数组中的最小的元素
AC代码:
public class Solution
{
private static ArrayList<ArrayList<Integer>> ret = new ArrayList<ArrayList<Integer>>(); public ArrayList<ArrayList<Integer>> fourSum(int[] nums, int target)
{
int newtarget=0; ArrayList<ArrayList<Integer>> finalres = new ArrayList<ArrayList<Integer>>();
Arrays.sort(nums);
for (int i = 0; i < nums.length; i++)
{
ArrayList<ArrayList<Integer>> temlist= new ArrayList<ArrayList<Integer>>();
if (i > 0 && nums[i] == nums[i-1]) continue;//避免结果反复,其后面和它相等的直接被跳过。
newtarget=target-nums[i];
int inputnums[]=new int[nums.length -i-1];
for(int ii=0;ii<nums.length -i-1;ii++)
inputnums[ii]=nums[ii+1+i];//每次选取该元素后面的数组作为《3sum》算法的输入数组
temlist=threeSum(inputnums,newtarget,nums[i]); finalres.addAll(temlist);
ret.clear();
}
return finalres; }
public static ArrayList<ArrayList<Integer>> threeSum(int[] num,int newtarget,int firstnum)
{
if (num == null || num.length < 3) return ret; Arrays.sort(num); int len = num.length;
for (int i = 0; i < len-2; i++)
{
if (i > 0 && num[i] == num[i-1]) continue;//避免结果反复,其后面和它相等的直接被跳过。
find(num, i+1, len-1, num[i],newtarget, firstnum); //寻找两个数与num[i]的和为0
} return ret;
} public static void find(int[] num, int begin, int end, int target,int newtarget,int firstnum)
{
int l = begin, r = end;
while (l < r)
{
if (num[l] + num[r] + target == newtarget)
{
ArrayList<Integer> ans = new ArrayList<Integer>();
ans.add(firstnum);//与原始的《3Sum》算法不同的地方为:记得把每次的启发遍历元素增加进去。就是4个数中的最小的那一个
ans.add(target);
ans.add(num[l]);
ans.add(num[r]);
ret.add(ans); //放入结果集中
while (l < r && num[l] == num[l+1]) l++;//避免结果反复,其后面和它相等的直接被跳过。
while (l < r && num[r] == num[r-1]) r--;////避免结果反复,其后面和它相等的直接被跳过。
l++;
r--;
}
else if (num[l] + num[r] + target < newtarget)
l++;
else
r--;
}
}
}
[LeetCode][Java] 4Sum的更多相关文章
- [LeetCode] 454. 4Sum II 四数之和II
Given four lists A, B, C, D of integer values, compute how many tuples (i, j, k, l) there are such t ...
- N-Queens II leetcode java
题目: Follow up for N-Queens problem. Now, instead outputting board configurations, return the total n ...
- leetcode 日记 4sum java
整体思路同之前的一样,依然采取降低维度的方式进行 public List<List<Integer>> solution(int nums[], int target) { L ...
- 【JAVA、C++】LeetCode 018 4Sum
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = tar ...
- Java [leetcode 18]4Sum
问题描述: Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d ...
- leetcode 18 4Sum JAVA
题目 给定一个包含 n 个整数的数组 nums 和一个目标值 target,判断 nums 中是否存在四个元素 a,b,c 和 d ,使得 a + b + c + d 的值与 target 相等?找出 ...
- LeetCode 18 4Sum (4个数字之和等于target)
题目链接 https://leetcode.com/problems/4sum/?tab=Description 找到数组中满足 a+b+c+d=0的所有组合,要求不重复. Basic idea is ...
- [LeetCode] 18. 4Sum 四数之和
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = tar ...
- LeetCode 18. 4Sum (四数之和)
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = tar ...
随机推荐
- 添加telnet命令
打开控制面板,打开程序和功能,看到左边有个“打开或关闭Windows功能 ,打开找到telnet客户端,把这2项都勾选上,然后确定就可以了 注意,如果只要telnet别人的话,就选telnet客户端. ...
- React 篇 Search Bar and content Table
我们要构建一个模块,其中包含一个内容显示的表格,然后上面有一个提供Search的栏位,并对Search中输入栏进行监听,当有改变的时候,触发Search然后对内容表中的内容进行过滤. Demo Lin ...
- Fiddler抓取Intellij Idea中执行的web网络请求
首先可以打开命令行 输入:ipconfig 找到本机配置的IP地址 这里是: 192.168.97.122 或者打开Fiddler 点击如下图片中的小三角符号:将鼠标放在online的位置,也可以看到 ...
- Appium基于python unittest自动化测试并生成html测试报告
本文基于python单元测试框架unittest完成appium自动化测试,生成基于html可视化测试报告 代码示例: #利用unittest并生成测试报告 class Appium_test(uni ...
- 使用antlr4及java实现snl语言的解释器
对于antlr4的基础使用,请参考我的前一篇文章<用antlr4来实现<按编译原理的思路设计的一个计算器>中的计算器>. 其实我对于antlr4的理解也仅限于那篇文章的范围,但 ...
- Statement和PreparedStatement深入学习总结
最近在看java安全编码方面的书籍,在看到SQL注入漏洞的问题时,引发了我对Statement和PreparedStatement深入总结的欲望,废话少说,下面咱们就正式开始. 当初始的SQL查询被修 ...
- Digital design之Boolean Algebra
1. 0 and 1 (duality: 0 -- 1, · -- +) X + 0 = X, X · 1 = X X + 1 = 1, X · 0 = 0 2. Idempotent X + X = ...
- (转)淘淘商城系列——使用Jedis操作集群
http://blog.csdn.net/yerenyuan_pku/article/details/72862084 通过上文的学习,我相信大家应该已经知道如何搭建Redis集群了,本文我将为大家介 ...
- Masonry 原理一
Under the hood Auto Layout is a powerful and flexible way of organising and laying out your views. H ...
- MySQL的基本概念与操作
数据库的基本概念什么是数据库?用于存储和管理数据的仓库.数据库的特点:持久化存储数据的.其实数据库就是一个文件系统方便存储和管理数据使用了统一的方式操作数据库 – SQL数据库的分类:数据库根据存储采 ...