There is integer array like {1,2,4,5,6,1,2,4,3,5,7,2,1}. I want to find the possible combination of ...

There is integer array like {1,2,4,5,6,1,2,4,3,5,7,2,1}. I want to find the possible combination of pair which sum is 4.
input : {1,2,4,5,6,1,2,4,3,5,7,2,1}
output : {1,1,2}, {2,2}, {3,1}, {1,2,1}...etc which make the sum as 4

 

A: 

这是一个subset sum problem问题,该类型问题的解法见 wiki,比较复杂

http://en.wikipedia.org/wiki/Subset_sum_problem

 

code sample (passed testing) 该解法是暴力法,即递归求出所有可能的组合

View Code
import java.util.ArrayList;
import java.util.Arrays;

public class Test
{
public static void main(String[] args)
{
int[] theArray={1,2,4,5,6,1,2,4,3,5,7,2,1};
ArrayList<ArrayList<Integer>> allpairs=getPairs(theArray,0,4);
System.out.println(allpairs.size());
for(ArrayList<Integer> pair:allpairs)
{
System.out.println(Arrays.toString(pair.toArray()));
}

System.out.println("Complete the testing work!");
}

public static ArrayList<ArrayList<Integer>> getPairs(int[] theArray, int start, int sum)
{

if(sum==0)
{
ArrayList<ArrayList<Integer>> pairs=new ArrayList<ArrayList<Integer>>();
ArrayList<Integer> pair=new ArrayList<Integer>();
pairs.add(pair);
return pairs;
}

if(start>=theArray.length)
{
return null;
}

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

//situation 1 include the start element;
ArrayList<ArrayList<Integer>> subpairs=getPairs(theArray,start+1,sum-theArray[start]);
if(subpairs!=null)
{
for(ArrayList<Integer> subpair:subpairs)
{
ArrayList<Integer> pair=new ArrayList<Integer>();
if(pair!=null)
{
pair.add(theArray[start]);
pair.addAll(subpair);
pairs.add(pair);
}
}
}

//situation 2 do not include the start element;
ArrayList<ArrayList<Integer>> otherpairs=getPairs(theArray,start+1,sum);
if(otherpairs!=null)
{
for(ArrayList<Integer> otherpair:otherpairs)
{
pairs.add(otherpair);
}
}
return pairs;
}
}



转载于:https://www.cnblogs.com/yayagamer/archive/2012/01/06/2313998.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值