// 17x2.cpp : Defines the entry point for the console application.//#include "stdafx.h"// 分支界定法:最大装载问题,改进版(使用FIFO)#include<iostream.h>#include "lqueue.h"template<class T>T GetMaxLoading(T w[], T c, int n){ LinkedQueue<T> Q; // 为第一层初始化 Q.Add(-1); int i = 1; T Ew Read More
// 17x1.cpp : Defines the entry point for the console application.//#include "stdafx.h"// 分支界定法:最大装载问题(使用FIFO)#include <iostream.h>#include "lqueue.h"// 所有参数里,最重要的是当前路径的累计权重wt,其余都是辅助参数template<class T>void AddLiveNode(LinkedQueue<T> &Q, T wt, T& bestw, i Read More
// 16x5.cpp : Defines the entry point for the console application.//#include "stdafx.h"// 回溯法:0/1背包问题(利用价值密度进行优化)// 左孩子的界限函数的价值与父节点相同,因为总价值=cp+子树价值。当向左孩子移的时候,那部分价值已经计入了新的cp了。#include <iostream.h>#include "msort.h"#include "object.h" // 内含两部分数据:物品标识,物品价值密度template& Read More