资源简介
用遗传算法解决多维背包问题,采用java代码。用遗传算法解决多维背包问题,采用java代码用遗传算法解决多维背包问题,采用java代码用遗传算法解决多维背包问题,采用java代码。

代码片段和文件信息
import java.util.Random;
public class Chromosome implements GA_ParamCloneable{
private int gene[];
private int fitness;
private int objValue;
/**
* Constructor
* @param length: The length of Chromosome‘s gene.
*/
public Chromosome(int length){
if(length<0){
System.out.println(“The length of array is unreasonable.“);
}
else{
this.gene=new int[length];
}
}
/**
* Deep Clone!!!
*/
@Override
public Chromosome clone() {
Chromosome c = null;
try{
c = (Chromosome)super.clone();
c.setGene(c.getGene().clone());
}catch(CloneNotSupportedException e) {
e.printStackTrace();
}
return c;
}
/**
* Randomly set genes on current chromosome.
*/
public void randomSetGene(){
Random random=new Random();
for(int i=0;i gene[i]=Math.round(random.nextFloat());
}
}
/**
*
* @param primaryGeneArray
*/
public void setPrimaryGene(int[] primaryGeneArray){
Random random=new Random();
for(int i=0;i gene[i]=primaryGeneArray[i]==1?1:Math.round(random.nextFloat());
}
}
/**
* Return the fitness of Chromosome.
* @return int
*/
public int getFitness(){
return this.fitness;
}
/**
* Set the fitness of Chromosome.
* @param fitness: int
* @return void
*/
public void setFitness(int fitness){
this.fitness=fitness;
}
/**
* Acquire objValue.
* @return
*/
public int getObjValue() {
return objValue;
}
/**
* Set the chromosome‘s objValue.
* @param objValue
*/
public void setObjValue(int objValue) {
this.objValue = objValue;
}
/**
* Acquire genes
* @return
*/
public int[] getGene(){
return this.gene;
}
/**
*
* @param gene
*/
public void setGene(int[] gene){
this.gene=gene;
}
/**
*
* @param index
*/
public void notGene(int index){
this.gene[index]=1-gene[index];
}
/**
* Calculate the value of Chromosome.
* @param void
* @return int
*/
public int calcObjValue(){
int chormosomeValue=0;
for(int i=0;i chormosomeValue+=(gene[i]*VALUE_ARRAY[i]);
}
setObjValue(chormosomeValue);
return chormosomeValue;
}
/**
* Carrying out mutation on the current chromosome.
* @param size: the size of Chromosome.
* @return rate: the rate of mutation.
* @return void
*/
public void mutate(double rate){
Random random=new Random();
for(int i=0;i if(random.nextDouble() gene[i]=1-gene[i];
}
}
}
/**
* Print the gene.
*/
public void printGene(){
for(int elem:gene){
System.out.print(elem+“ “);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 232 2019-12-09 21:58 GA\.classpath
文件 378 2019-12-09 21:58 GA\.project
文件 3137 2019-12-16 11:23 GA\bin\Chromosome.class
文件 2227 2019-12-15 19:38 GA\bin\GA_Param.class
文件 2484 2019-12-17 22:02 GA\bin\GA_Solution.class
文件 836 2019-12-16 11:30 GA\bin\Population$1.class
文件 10286 2019-12-16 11:30 GA\bin\Population.class
文件 581 2019-12-17 22:01 GA\bin\Program.class
文件 2823 2019-12-16 11:23 GA\src\Chromosome.java
文件 1470 2019-12-15 19:38 GA\src\GA_Param.java
文件 528 2019-12-17 22:43 GA\src\GA_Solution.java
文件 12166 2019-12-17 23:09 GA\src\Population.java
文件 181 2019-12-17 22:01 GA\src\Program.java
目录 0 2019-12-15 13:06 GA\bin
目录 0 2019-12-10 12:08 GA\src
目录 0 2019-12-17 22:42 GA
----------- --------- ---------- ----- ----
37329 16
- 上一篇:魔塔Java开源(素材+源码)
- 下一篇:Java实现Web服务器和客户端
相关资源
- 三角网构TIN生成算法,Java语言实现
- 推荐算法的JAVA实现
- 回归算法Java程序
- java实现的搜索引擎
- C#和Java实现互通的RSADES加解密算法
- java国密算法SM4加密.zip
- java算法大全含源码包
- 算法设计、分析与实现从入门到精通
- DES加密解密算法论文
- 华科密码学课设之SPN的差分攻击以及
- RSA数字签名算法的具体实现
- 银行家算法的java代码实现,Swing写的
- 大宝CA版本的国密算法DoubleCA-JCE实现,
- Java基于双向链表实现双端队列结构(
- 国密版本的SSL库
- RSA算法JAVA公钥加密,C#私钥解密
- aes加密算法 五种模式
- 论文研究 - 使用混合密码算法的端到
- des加密算法实现任意文件加解密
- Java模拟操作系统实验之四种进程调度
- 银行家算法JAVA代码实现,附带图形化
- HDP java代码,非参数主题模型学习算法
- EM算法java实现
- 数据结构与算法分析Java语言描述-英文
- SM2 SM3 SM4国密算法JAVA与JS实现版本
- N后问题 算法课设Java代码和报告
- 2017-广东工业大学操作系统课程设计银
- 数据结构与算法:C#语言描述(中,英
- Java编写的k-means文本聚类算法
- 计算机网络课程设计报告_DH算法_Wir
评论
共有 条评论