背包算法 java_背包问题算法java实现

本文分享了一个关于物品没有带价值的背包能带多少重量的问题的解决方案。通过使用两个栈来跟踪已选择的物品及其对应的索引,该算法能够在给定背包总容量的情况下找到可行的物品组合。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

我的是物品没有带价值的背包能带多少重量的问题,我已经实现,运行结果是没有问题的。特别分享。inta[]={11,8,7,6,5};inttotal=28;intleftbound=total;inti=0;intj=0;Stackstack1=new...

我的是物品没有带价值的背包能带多少重量的问题,我已经实现,运行结果是没有问题的。特别分享。

int a[] ={11,8,7,6,5};

int total=28;

int leftbound = total;

int i=0;

int j=0;

Stack stack1 = new Stack();

Stack stack2 = new Stack();

while(j < 5){

i=j;

while(i<5){

if(a[i]==leftbound){

stack1.push(new Integer(a[i]));

stack2.push(new Integer(i));

return;

}else if(a[i] < leftbound){

stack1.push(new Integer(a[i]));

stack2.push(new Integer(i));

leftbound = leftbound - a[i];

}

if(i>=4 && !stack1.empty()){

leftbound= leftbound + ((Integer)stack1.pop()).intValue();

i=((Integer)stack2.pop()).intValue()+1;

continue;

}

i++;

}

j++;

leftbound = total;

while(!stack1.empty()){

stack1.pop();

stack2.pop();

}

}

}

展开

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值