代码搜索:背包问题
找到约 10,000 项符合「背包问题」的源代码
代码结果 10,000
www.eeworm.com/read/408187/11402604
pps 优化问题实验.pps
www.eeworm.com/read/407780/11410826
txt 石头合并问题.txt
#include
#include
using namespace std;
//石头合并问题 PKU 1086 动态规划
/*
输入:
4
4 1 2 3
输出:
*/
#define MAX 1000000000
int a[202];//每个石头的重量
long f[202][202];//f[i][j],第i个
www.eeworm.com/read/407780/11410889
txt 凸包问题.txt
#include
#include
#include
using namespace std;
//凸包问题
/*
输入
6
0 0
4 0
2 1
0 4
3 4
1 7
*/
#define NMAX 11
int x[NMAX];
int y[NMAX];
int tb[NMAX];
www.eeworm.com/read/405382/11464069
pps 优化问题实验.pps
www.eeworm.com/read/405283/11466885
txt 编程汉字问题.txt
/* 本程序为Windows下的控制台程序,需MFC的支持(否则不能通过编译)
* 执行时带一个参数,指定要打开的文件;以每行10个字符(每个中文字符算一个字符),
* 最后一行可能不足10个。另外如'\n','\t'等字符可能改变打印格式。
*/
#include
#include
int main(int argc, c
www.eeworm.com/read/262289/11594174
doc matlab小问题.doc
www.eeworm.com/read/262212/11601193
pps 优化问题实验.pps
www.eeworm.com/read/347803/11635478
suo 八数码问题.suo
www.eeworm.com/read/347803/11635486
cpp 八数码问题.cpp
// 八数码问题.cpp : 定义控制台应用程序的入口点。
//该程序的运行环境为Microsoft Visual Studio 2008。
#include "stdafx.h"
#include
#include
#include
using std::cin;
using std::cout;
using std::e