回溯法求解0-1背包问题

题目如下:

使用回溯方法,求解0-1背包问题: n=5 , C=10, p=[9,10,7,4,3],w=[3,5,2,1,4]

 

#include <stdio.h>

int w[5]={3,5,2,1,4};
int v[5]={9,10,7,4,3};
int best=0;
int temp=0;
int a[5]={0};
int b[5]={0};
int wt=0;
int n=5;
int c=10;

void fun(int i)
{
	if(i>=n)
	{
		if(temp>best)
		{
			for(int j=0;j<n;j++)
				b[j]=a[j];
			best=temp;
		}
	}
	else
	{
		if(wt+w[i]<=c)
		{
			a[i]=1;
			wt+=w[i];
			temp+=v[i];
			fun(i+1);
			wt-=w[i];
			temp-=v[i];
		}
		a[i]=0;
		fun(i+1);
	}
}



void main()
{
	fun(0);
	for(int i=0;i<n;i++)
		printf("%d ",b[i]);
	printf("\n%d\n",best);
}

 

 

    原文作者:回溯法
    原文地址: https://blog.csdn.net/Emanueling/article/details/7420442
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞