搜索资源列表
expr3
- 集装箱的装箱问题 给定一个集装箱,其长为L,宽为W和高为H,现有一批圆柱形木材,每根木材的长均为L,但是半径不同,设第i根木材半径为ri。问如何装箱,使得集装箱的空间利用率最高?-problem given a container, its length L, width W and H for high, existing batch of cylindrical wood and each timber are long L, but different radius, based i
greedy
- (1).问题描述:集装箱的装箱问题 给定一个集装箱,其长为L,宽为W和高为H,现有一批圆柱形木材,每根木材的长均为L,但是半径不同,设第i根木材半径为ri。问如何装箱,使得集装箱的空间利用率最高? (2).程序设计要求: a. 设计一个贪心算法 b. 任给一个输入实例,能输出集装箱的空间利用率 c. 能用图形演示装箱的过程 演示: 输入要测试的文件名,如c17.txt,程序将给出结果,并用图形演示。
JZXcalc
- 集装箱的装箱问题 给定一个集装箱,其长为L,宽为W和高为H,现有一批圆柱形木材,每根木材的长均为L,但是半径不同,设第i根木材半径为ri。问如何装箱,使得集装箱的空间利用率最高? 本程序要求用贪心算法解决: 贪心算法总是作出在当前看来是最好的选择。也就是说,不从整体最优上加以考虑,它所做出的仅是在某种意义上的局部最优解。
lab_3
- 给定一个集装箱,其长为L,宽为W和高为H,现有一批圆柱形木材,每根木材的长均为L,但是半径不同,设第i根木材半径为ri。问如何装箱,使得集装箱的空间利用率最高? 原创 里面附有详细报告。
tanxinsuanfadeyinyong
- 给定一个集装箱,其长为L,宽为W和高为H,现有一批圆柱形木材,每根木材的长均为L,但是半径不同,设第i根木材半径为ri。问如何装箱,使得集装箱的空间利用率最高?
source_code
- 集装箱信号识别系统,主要做的是集装箱的号码的图像的处理。
backtracking
- 利用回溯法来实现集装箱装载方案,要求n个集装箱装上这2艘轮船-Achieved by backtracking the container load plan, requiring n containers loaded on the two ships
bingreedy
- 此源程序为解决一维集装箱装载问题,但是为二维和三维算法提供了很好的思路。-This source code to solve one-dimensional container loading problem, but for the two-dimensional and three-dimensional algorithm provides a very good idea.
Loading
- 用回溯法求解装载问题,对有解的装载问题,采用的策略可以得到最优装载方案 (1)首先将第一艘轮船尽可能装满; (2)然后将剩余的集装箱装上第二艘轮船-With back problems loading method, loading of the solvability problem, using the optimal strategy can be loaded with the program (1) First of all, the first a ship filled w
081105
- 基于MATLAB的组合模型 在港口吞吐量预测中的应用 以某港1998--2007年集装箱吞吐量为实测数据,建立其集装箱吞吐量的灰色理论、三次指数平滑、三次多项式 等预测模型,在MATLAB下,对比该港集装箱吞吐量各模型预测拟合值与实际值的差异。分析了差异产生的原因及其单一预 测模型的局限性,提出了港口集装箱吞吐量组合预测法。其预测误差明显低于其它单模型。运用组合预测模型.可以降低误 差。提高预测精度。-A combination of MATLAB-based model i
PenQuestionAlgorithmSolution
- 一家GIS笔试题和解决方案1集装箱摆放问题2单源最短路径3区域生长-A GIS pen and the questions and solutions to a container placed in two single-source shortest path problem 3 Regional Growth
01beibao
- 有一批集装箱要装上一艘载重量为c的轮船.其中集装箱i的重量为Wi.最优装载问题要求确定在装载体积不受限制的情况下,将尽可能多的集装箱装上轮船-A group of containers to be loaded onto a ship load of c. In which the weight of the container i is Wi. Loading problem requires to determine the optimal load size without restric
optimal_solutions_loading_problem
- 有n个集装箱要装上1艘载重量分别为c的轮船,其中第i个集装箱的重量为wi。最优装载问题要求确定在装载体积不受限制的情况下,将尽可能多的集装箱装上轮船,并找出一种装载方案-There are n containers to be loaded onto a ship load of c, respectively, of which the first i-weight of the container wi. Loading problems require to determine the o
jzxzxyh
- 进行集装箱装箱空间的优化,可以尽享集装箱装箱过程的困难的解救!-Optimization of packing space for containers, container packing process can be difficult to enjoy the rescue!
BPnetwork
- 本代码是采用BP神经网络 对上海港的集装箱吞吐量进行预测,内涵两个程序包,一个为训练网络,里一个是测试之用,请参考,希望有所帮助-This code is used BP neural network to predict the Shanghai Port' s container throughput, meaning the two packages, one for training the network, where one is testing purposes, pleas
22
- 装载问题 问题描述与实验目的 有n个集装箱要装上2艘载重量分别为c1和c2的轮船,其中第i个集装箱的重量为wi,要求确定是否有一个合理的装载方案可将这个集装箱装上这2艘轮船。如果有,找出一种装载方案。 注意,在满足 的条件下才可能将这个集装箱装上这2艘轮船。 输入样例 3 10 40 40 50 50 3 20 40 40 50 50 输出样例 Case 1 50 110 Case 2 No -Loading Problem D
PPD
- 通用的遗传算法,可实现以下问题:(a)设计出n种不同尺寸货品的排放方法,使得集装箱的空间利用率最高;(b)给出一批货物所需的最少集装箱数量。请给出在附件一对应具体问题下的最优排放及空间利用率。 -General genetic algorithm, can achieve the following questions: (a) design of size n different methods of emission goods, allowing maximum utilization
load
- 有n个集装箱要装上2艘载重量分别为c1和c2的轮船,其中第i个集装箱的重量为wi,要求确定是否有一个合理的装载方案可将这个集装箱装上这2艘轮船。如果有,找出一种装载方案。 注意,在满足 的条件下才可能将这个集装箱装上这2艘轮船。 -There are n containers to be loaded on two load c1 and c2, respectively ships, of which the i-th weight of the container for the w
zuiyouzhuangzai
- 贪心算法之最优装载——有n个集装箱要装上1艘载重量分别为c的轮船,其中第i个集装箱的重量为wi。最优装载问题要求确定在装载体积不受限制的情况下,将尽可能多的集装箱装上轮船,并找出一种装载方案。-Greedy algorithm of the optimal load
grnn
- 一个用于集装箱预测的广义自回归神经网络,效果挺好,也可以用于其他领域的非线性预测-It is a GRNN algorithm used to forecast container throughput with satisfactory performance, which can also be apllied in the other forecast areas.