Chinaunix首页 | 论坛 | 博客
  • 博客访问: 254182
  • 博文数量: 170
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1709
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-06 18:01
文章分类

全部博文(170)

文章存档

2016年(11)

2015年(130)

2014年(29)

分类: Java

2015-04-02 15:23:09

mport java.util.ArrayList;
import java.util.Arrays;
import java.util.List;





//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)
public class FourSum {


public static void main(String[] args) {
// TODO 自动生成的方法存根
int[] a=new int[]{3,1,4,2,5,-4,2,4,-5};
System.out.print(fourSum(a,-12));
}
public static List> fourSum(int[] num, int target) {
        List> result=new ArrayList>();
        Arrays.sort(num);
        for(int i=0;i         if(i>0&&num[i]==num[i-1])
        continue;
        for(int j=i+1;j         if(j>i+1&&num[j]==num[j-1])
            continue;
        int k=j+1;
        int m=num.length-1;
       
        while(k         //k-1
        if(k>j+1&&num[k]==num[k-1]){
        k++;
        continue;
        }
        //m--
        if(m         m--;
        continue;
        }
        int sum=num[i]+num[j]+num[k]+num[m]-target;
        if(sum<0){
        k++;
        }else if(sum>0){
        m--;
        }else{
        List element =new ArrayList();
        element.add(num[i]);
        element.add(num[j]);
        element.add(num[k]);
        element.add(num[m]);
        result.add(element);
        k++;
        }
        }
        }
        }
        return result;
        
    }


}

阅读(272) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~