小编所收集到的相关计算机二级C语言辅导实例编程的资料 大家要认真阅读哦!
动态规划求0/1背包问题
#include
#include
#include
//goods是一个或多个物品的重量和价值
typedef struct goods
{
int weight;
int value;
} goods;
//用来定义一个queryList数组
//数组中的每个元素定义一趟需要记录的数据
typedef struct queryList
{
goods *subResult; //一趟需要记录的数据
int end; //指示该趟数据的最后一个元素
} queryList;
queryList* dknap(goods *Goods, int count, int capacity)
{
int i, j, next, pre, index, k;
queryList *ql;
goods cur;
ql = (queryList *)malloc(sizeof(queryList)*count);
ql[0].subResult = (goods*)malloc(sizeof(goods));
ql[0].end = 0;
小编在此祝愿大家都能够考过呦!
继续了解计算机二级C语言?点击下方链接,进入考无忧官方网站,更多精彩等你来!
文章推荐:
温馨提示:
想要了解更多试题请点击查看>>>计算机二级考试题库
考试想拿高分吗?更多二级ms office试题请点击查看>>>二级ms office
想知道更多关于计算机等级考试的最新资讯吗?点击进入>>>计算机等级考试
本文网址:http://www.k51.com.cn/info/jsjdjks/1808/0142534.html