问题:K Sum问题是一个问题系列,在一个数组中找K个数的和能够满足题目中要求。从2 Sum 到 3 Sum , 3 Sum Clozet , 4 Sum。。解法虽一开始不容易想到,但get到解题技能后,该系列的题目其实解法较为单一。

一、核心解题思路。Two Sum。

题目:一个数组a中,找寻两个数,使其和等于target。返回两个数的下标。

思路:最白目的思路是O(n2)解法,无需多言。精彩的解法能够O(n)完成算法。

   将该数组进行排序。设置两个指针start,end指向数组的头尾。如果a[start] + a[end] < target,那么将start指针往后移,因为当前的和值比目标值小;反之,将end指针向前移,因为当前的和值比目标值大。直到两个指针相遇,结束查找。

代码:由于要返回两个数的下标,因此在对数组进行排序之前,需要记录数据的原始下标。

 public class Solution {
public int[] twoSum(int[] numbers, int target) { if(numbers.length <= 1) return null; Pair[] pairs = new Pair[numbers.length];
for(int i = 0 ; i < numbers.length ; i++){
pairs[i] = new Pair(numbers[i] , i+1);
} Comparator<Pair> comparator = new Comparator<Pair>(){
public int compare(Pair o1 , Pair o2){
return o1.val > o2.val ? 1 : -1 ;
}
}; Arrays.sort(pairs , comparator); int index1 = 0 , index2 = numbers.length - 1; while(index1 < index2){
int temp = pairs[index1].val + pairs[index2].val;
if(temp == target) break;
else if(temp < target) index1++;
else index2--;
}
if(pairs[index1].index < pairs[index2].index) return new int[]{pairs[index1].index , pairs[index2].index};
else return new int[]{pairs[index2].index , pairs[index1].index};
}
} class Pair{
int val;
int index;
Pair(int x , int y){
val = x;
index = y;
}
}

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

二、举一反三。3 Sum。

问题:一个数组a,判断其中是否存在三个数a , b , c 使其和为target。返回这些三元组集合。

思路:该问题可退化为 2 Sum问题来解答。先选择任意一个数a ,然后判断剩余数组中是否存在另外两个数的和等于target - a。<----这里就完全是2 Sum问题的方法了。

代码:

 public ArrayList<ArrayList<Integer>> threeSum(int[] num) {

         ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();

         Arrays.sort(num);

         for(int i = 0 ; i < num.length ; i++){
int target = 0 - num[i];
//由于结果要求三元组的值要非递减顺序,因此将数组排序后,从头开始定第一个数据,后两个数据从该数据的后部选取。
for(int j = i + 1 , k = num.length - 1 ; j < num.length && k >= 0 && j < k ;){
int temp = num[j] + num[k];
if(temp == target){ boolean ifAdd = true; //judge duplicate
for(int index = 0 ; index < result.size() ; index++){
if(result.get(index).get(0) == num[i]
&& result.get(index).get(1) == num[j]
&& result.get(index).get(2) == num[k]){
ifAdd = false;
break;
}
}
if(ifAdd){
ArrayList<Integer> one = new ArrayList<Integer>();
one.add(num[i]);
one.add(num[j]);
one.add(num[k]);
result.add(one);
}
j++; }else if(temp < target) j++;
else k--;
}
}
return result;
}

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

三、练习熟悉。3 Sum Closest。

题目:给顶一个数组a,求最接近target的三元组的和。输出该和。

思路:完全与3 Sum问题相同。唯一不同的地方在于,因为它是判断与target最接近,因此利用绝对值来判断当前和是否与target最接近。

代码:

public int threeSumClosest(int[] num, int target) {

        Arrays.sort(num);
int min = Integer.MAX_VALUE; for(int i = 0 ; i < num.length ; i++){ for(int j = i + 1 , k = num.length - 1 ; j < num.length && k >= 0 && j < k ;){
int threeSum = num[j] + num[k] + num[i];
if(threeSum == target) {
min = 0;
break;
}else{ int dis = target - threeSum;
//利用绝对值来判断是否与traget最接近。
if(Math.abs(dis) < Math.abs(min)) {
min = dis;
} if(dis > 0) j++;
else k--;
}
}
if(min == 0){
break;
}
}
return target - min;
}

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

四、还是练习。4 Sum。

问题:一个数组a,寻找是否存在四个数a + b + c + d = target。返回四元组集合。

思路:先固定住一个数a , 然后寻找剩余数组中是否存在三个数和 等于 target - a(退化为3Sum),然后计算三个数和时,再先固定一个数b,然后寻找剩余数组中是否存在两个数和等于target-a -b(退化为2Sum)。

代码:

 public ArrayList<ArrayList<Integer>> fourSum(int[] num, int target) {

         ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>();

         if(num.length <= 3) return result;

         Arrays.sort(num);

         for(int i = 0 ; i <= num.length - 4 ; i++){
for(int j = i + 1 ; j <= num.length - 3 ; j++){
int start = j + 1;
int end = num.length - 1;
while(start < end){
int temp = num[i] + num[j] + num[start] + num[end];
if(temp == target){
boolean ifAdd = true;
for(int k = 0 ; k < result.size() ; k++){
if(result.get(k).get(0) == num[i] && result.get(k).get(1) == num[j]
&& result.get(k).get(2) == num[start] && result.get(k).get(3) == num[end]){
ifAdd = false;
break;
}
} if(ifAdd){
ArrayList<Integer> each = new ArrayList<Integer>();
each.add(num[i]);
each.add(num[j]);
each.add(num[start]);
each.add(num[end]);
result.add(each);
} start++; }else if(temp < target) start++;
else end--;
}
}
} return result;
}

因此,总结K Sum的问题,其核心思路就是2Sum问题,任何K > 2时,都可通过逐层退化,到2Sum。而2Sum问题,在将数据进行排序后,就可通过两个指针来达到要求。

[leetcode]_K Sum 问题的更多相关文章

  1. LeetCode:Path Sum I II

    LeetCode:Path Sum Given a binary tree and a sum, determine if the tree has a root-to-leaf path such ...

  2. 剑指offer 65. 不用加减乘除做加法(Leetcode 371. Sum of Two Integers)

    剑指offer 65. 不用加减乘除做加法(Leetcode 371. Sum of Two Integers) https://leetcode.com/problems/sum-of-two-in ...

  3. [LeetCode] Path Sum III 二叉树的路径和之三

    You are given a binary tree in which each node contains an integer value. Find the number of paths t ...

  4. [LeetCode] Combination Sum IV 组合之和之四

    Given an integer array with all positive numbers and no duplicates, find the number of possible comb ...

  5. [LeetCode] Max Sum of Rectangle No Larger Than K 最大矩阵和不超过K

    Given a non-empty 2D matrix matrix and an integer k, find the max sum of a rectangle in the matrix s ...

  6. [LeetCode] Range Sum Query 2D - Mutable 二维区域和检索 - 可变

    Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper lef ...

  7. [LeetCode] Range Sum Query - Mutable 区域和检索 - 可变

    Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive ...

  8. [LeetCode] Range Sum Query 2D - Immutable 二维区域和检索 - 不可变

    Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper lef ...

  9. [LeetCode] Range Sum Query - Immutable 区域和检索 - 不可变

    Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive ...

随机推荐

  1. background 、backgroundcolor、background-color 我怎么有点分不清了??

    background 可以设置 背景颜色.背景图片.定位等 background-color 只能设置 背景颜色 backgroundColor在js处理css里面,是DOM.style.backgr ...

  2. CRM plugin 激活 停用 事件

    需要注册 SetState 和 SetStateDynamecEntity

  3. jquery ajax事件

    $.ajax({ type : 'POST', url : 'user.php', data : $('form').serialize(), success : function (response ...

  4. 卸载oracle

    1.   开始->设置->控制面板->管理工具->服务   停止所有Oracle服务.    2.   开始->程序->Oracle   -   OraHome81 ...

  5. [ZOJ 1006] Do the Untwist (模拟实现解密)

    题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=6 题目大意:给你加密方式,请你求出解密. 直接逆运算搞,用到同余定理 ...

  6. 第二章 D - Number Sequence(1.5.10)

    转载请注明出处:優YoU http://user.qzone.qq.com/289065406/blog/1301527312 大致题意: 有一串数字串,其规律为 1 12 123 1234 1234 ...

  7. StrictMode对SharedPreferences的检查出来的IO操作

    在使用StrictMode时,发现会爆出 StrictMode policy violation;~duration=1949 ms: android.os.StrictMode$StrictMode ...

  8. http是什么?

    http HyperText Transfer Protocol 超文本传输协议,是一个应用层通信协议. 可以用wireshark抓取.

  9. Gradle用户指南(章8:依赖关系管理基础)

    章8:依赖关系管理基础 本章将介绍一些gradle依赖关系管理的基础 什么是依赖关系管理? 简略的说,依赖管理是由两部分组成的.首先,gradle需要知道你要构建或者运行的项目,以便找到它们.我们将这 ...

  10. 翻译「C++ Rvalue References Explained」C++右值引用详解 Part1:概述

    本文系对「C++ Rvalue References Explained」 该文的翻译,原文作者:Thomas Becker. 该文较详细的解释了C++11右值引用的作用和出现的意义,也同时被Scot ...