0-1背包基础问题

package backpack;


public class Pack {
	
	public Pack(Goods[] goods, int volumn) throws InstantiationException {
		this.goods = goods;
		this.volumn = volumn;
	}
	
	public int maxValue(){
		return packResolution( goods.length-1, volumn );
	}
	
	private int packResolution(int i, int j){
		int value;
		if(i == -1 || j == 0){
			value = 0;
		} else if(j-goods[i].getWeight() < 0){
			//goods[i] excluded
			value = packResolution(i-1, j);
		} else {
			//goods[i] included
			int taken = packResolution(i-1, j-goods[i].getWeight()) + goods[i].getValue();
			int notTaken = packResolution(i-1, j);
			value = notTaken > taken ? 
							notTaken : taken;
		}
		return value;
	}
	
	public static void main( String[] args ) throws InstantiationException {
		Goods goods[] = {
				new Goods( 3, 4 ),
				new Goods( 4, 5 ),
				new Goods( 5, 6 )
		};
		Pack pack = new Pack( goods, 10 );
		System.out.println(pack.maxValue());
	}
	
	private Goods[]									goods;
	private int											volumn;
}

class Goods {
	
	public Goods(int weight, int value){
		this.weight = weight;
		this.value = value;
	}
	
	public int getWeight() {
		return weight;
	}
	public void setWeight( int weight ) {
		this.weight = weight;
	}
	public int getValue() {
		return value;
	}
	public void setValue( int value ) {
		this.value = value;
	}
	
	private int value;
	private int weight;
	
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值