首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴蓝天绿水的代码贴全部
有n件物品,质量分别为w[n],背包的容量为s,如果有m件物品的质量的和是s,则这m件物品为一组解,找出所有解
阅读全部 | 2017年10月14日 21:45
#include <iostream.h>
#include <string.h>
#include <stdlib.h>
using namespace std;

class node
{
friend class linklist;
private:
                enum{len=64}
long int ID;
char Name[len];
......................
阅读全部 | 2017年9月16日 22:20
1
蓝天绿水