背包问题小结--持续更新 算法基础篇(七)
摘要:
View Code 1 // 背包问题.cpp : 定义控制台应用程序的入口点。 2 // 3 //来自背包九讲 4 5 6 /****************************/ 7 /* 8 设计者:cslave 9 代码说明: 背包问题 10 */ 11 #include "stdafx.h" 12 #include <iostream> 13 using namespace std; 14 #define NumItem 10 15 #define Max 100 16 typedef int CapType; 17 typedef int Val 阅读全文
posted @ 2012-06-16 11:14 北冥茶花开 阅读(140) 评论(0) 推荐(0) 编辑