01背包问题(递归)

01背包问题的递归法求解

 

int GetMaxScore(int h, int w[], int s[], int CourseCount)
{
	if (CourseCount == 0 )
	{
		return 0;
	}
	else {
		int Score1 = GetMaxScore(h, w, s, CourseCount - 1);
		int Score2 = GetMaxScore(h - w[CourseCount-1], w, s, CourseCount - 1) + s[CourseCount-1];
//注意第n节课的数组下标为n-1!!!
		if (h < w[CourseCount - 1])
		{
			return Score1;
		}
		else {
			return Score1 > Score2 ? Score1 : Score2;
		}
	}
}

精髓在于理解动态变化过程:

  设 f(h,n) 为总时间h,考虑前n节课时可获得的最高分,则:

        一、若第n节课时时间不够,即 h<w[n-1] ,则f(h,n)=f(h,n-1)

&n

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值