c++
梧桐雨丶
做个单纯的程序员,保持学习心态。
展开
-
背包问题
#include stdio.h>#include iostream>#includestdlib.h>#define MAXSIZE 100 //假设物体总数#define M 15 //背包的载荷能力using namespace std;//算法核心,贪心算法void GREEDY(float w[], float x[], int sortResult[], int n){ floa转载 2014-02-28 15:54:41 · 693 阅读 · 0 评论 -
用邻接表实现该图的广度优先搜索遍历
#includeconst intn=8; //表示图中的最大顶点数const inte=15; //图中的最大边数typedefint elemtype;boolvisited[n+1]; //标志数组用于记载某个顶点是否被访问过classlink //定转载 2014-06-12 19:03:49 · 1632 阅读 · 0 评论