Addison Wesley - Imperfect C++. Practical Solutions for Real-Life Programming
标签: Programming Imperfect Practical Solutions
上传时间: 2015-03-30
上传用户:netwolf
Building Solutions With Microsoft Dot NET Compact Framework電子書
标签: Solutions Microsoft Framework Building
上传时间: 2015-04-12
上传用户:love1314
The source code for "C++ Solutions". This book is a companion to the book that is widely recognized as "the C++ bible": The C++ Programming Language (third edition) by Bjarne Stroustrup. If you re a programmer, Bjarne s book comes very highly recommended.
标签: book recognized Solutions companion
上传时间: 2014-01-22
上传用户:努力努力再努力
this tar includes my code which employ the Lin-Kernighan algorithm to address the tsp problem. this tar also include some testfiles and config file and a readme which describes how to run this program.
标签: this Lin-Kernighan algorithm the
上传时间: 2014-01-10
上传用户:stella2015
Developing XML Solutions with JavaServer Pages Technology
标签: Developing JavaServer Technology Solutions
上传时间: 2013-12-19
上传用户:youmo81
Using Genetic Algorithm to solve the 8 Queens problem.
标签: Algorithm Genetic problem Queens
上传时间: 2014-11-28
上传用户:yd19890720
刚学习C++时写的学生成绩管理系统,只需要创建file.cpp和student.h就行了
上传时间: 2014-01-10
上传用户:xaijhqx
王勖成《有限单元法》里面的教学源程序,PROGRAM OF PLANE PROBLEM 96.1
标签: PROGRAM PROBLEM PLANE 96.1
上传时间: 2014-01-09
上传用户:Breathe0125
实现背包问题 package problem 1. 问题描述 假设有一个能装入总体积为T的背包和n件体积分别为w1 , w2 , … , wn 的物品,能否从n件物品中挑选若干件恰好装满背包,即使w1 +w2 + … + wn=T,要求找出所有满足上述条件的解。例如:当T=10,各件物品的体积{1,8,4,3,5,2}时,可找到下列4组解: (1,4,3,2)、(1,4,5)、(8,2)、(3,5,2)。 2. 基本要求 读入T、n、w1 , w2 , … , wn 3.提示: 可利用递归方法:若选中w1 则问题变成在w2 , … , wn 中挑选若干件使得其重量之和为T- w1 ,若不选中w1,则问题变成在w2 , … , wn 中挑选若干件使得其重量之和为T 。依次类推。 也可利用回溯法的设计思想来解决背包问题。首先将物品排成一列,然后顺序选取物品装入背包,假设已选取了前i 件物品之后背包还没有装满,则继续选取第i+1件物品,若该件物品“太大”不能装入,则弃之而继续选取下一件,直至背包装满为止。但如果在剩余的物品中找不到合适的物品以填满背包,则说明“刚刚”装入背包的那件物品“不合适”,应将它取出“弃之一边”,继续再从“它之后”的物品中选取,如此重复,,直至求得满足条件的解,或者无解。 注:没压缩密码
上传时间: 2014-01-18
上传用户:yxgi5
student managerment,功能有相关信息,信息管理如排序,插入,删除
标签: managerment student 相关信息 信息管理
上传时间: 2013-12-17
上传用户:lacsx