Leetcode4Sum

Posted wuezs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode4Sum相关的知识,希望对你有一定的参考价值。

题目链接:https://leetcode.com/problems/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)

思路:

3sum基础上再嵌套一层循环,时间复杂度为O(n^3),最好的方法是O(n^2*logn),参考网上的解法,此处就不列了

算法:

[java]  view plain  copy

以上是关于Leetcode4Sum的主要内容,如果未能解决你的问题,请参考以下文章