深入理解Java遗传算法
关于遗传算法的详细原理以及具体的定义这里就不多介绍,想了解的可以自行百度,下面就简单介绍下自己对遗传算法的理解,本文对基因的编码采用二进制规则。
算法思想:
遗传算法参照达尔文的进化论,认为物种都是向好的方向去发展(适者生存),因此可以认为到足够的代数之后,得到的最值可实际的最值很接近。
算法步骤:
- 1)随机产生一个种群;
- 2)计算种群的适应度、最好适应度、最差适应度、平均适应度等指标;
- 3)验证种群代数是否达到自己设置的阈值,如果达到结束计算,否则继续下一步计算;
- 4)采用转盘赌法选择可以产生下一代的父代,产生下一代种群(种群中个体数量不变);
- 5)种群发生基因突变;
- 6)重复2、3、4、5步。
算法实现-基因部分
1、种群个体(这里认为是染色体),在个体中,我们为这个个体添加两个属性,个体的基因和基因对应的适应度(函数值)。
public class chromosome { private boolean[] gene;//基因序列 private double score;//对应的函数得分 }
2、随机生成基因序列,基因的每一个位置是0还是1,这里采用完全随机的方式实现。
public chromosome(int size) { if (size <= 0) { return; } initgenesize(size); for (int i = 0; i < size; i++) { gene[i] = math.random() >= 0.5; } } private void initgenesize(int size) { if (size <= 0) { return; } gene = new boolean[size]; }
3、把基因转化为对应的值,比如101对应的数字是5,这里采用位运算来实现。
public int getnum() { if (gene == null) { return 0; } int num = 0; for (boolean bool : gene) { num <<= 1; if (bool) { num += 1; } } return num; }
4、基因发生变异,对于变异的位置这里完全采取随机的方式实现,变异原则是由1变为0,0变为1。
public void mutation(int num) { //允许变异 int size = gene.length; for (int i = 0; i < num; i++) { //寻找变异位置 int at = ((int) (math.random() * size)) % size; //变异后的值 boolean bool = !gene[at]; gene[at] = bool; } }
5、克隆基因,用于产生下一代,这一步就是将已存在的基因copy一份。
public static chromosome clone(final chromosome c) { if (c == null || c.gene == null) { return null; } chromosome copy = new chromosome(); copy.initgenesize(c.gene.length); for (int i = 0; i < c.gene.length; i++) { copy.gene[i] = c.gene[i]; } return copy; }
6、父母双方产生下一代,这里两个个体产生两个个体子代,具体哪段基因差生交叉,完全随机。
public static list<chromosome> genetic(chromosome p1, chromosome p2) { if (p1 == null || p2 == null) { //染色体有一个为空,不产生下一代 return null; } if (p1.gene == null || p2.gene == null) { //染色体有一个没有基因序列,不产生下一代 return null; } if (p1.gene.length != p2.gene.length) { //染色体基因序列长度不同,不产生下一代 return null; } chromosome c1 = clone(p1); chromosome c2 = clone(p2); //随机产生交叉互换位置 int size = c1.gene.length; int a = ((int) (math.random() * size)) % size; int b = ((int) (math.random() * size)) % size; int min = a > b ? b : a; int max = a > b ? a : b; //对位置上的基因进行交叉互换 for (int i = min; i <= max; i++) { boolean t = c1.gene[i]; c1.gene[i] = c2.gene[i]; c2.gene[i] = t; } list<chromosome> list = new arraylist<chromosome>(); list.add(c1); list.add(c2); return list; }
算法实现-遗传算法
1、对于遗传算法,我们需要有对应的种群以及我们需要设置的一些常量:种群数量、基因长度、基因突变个数、基因突变率等,具体参照如下代码:
public abstract class geneticalgorithm { private list<chromosome> population = new arraylist<chromosome>();//种群 private int popsize = 100;//种群数量 private int genesize;//基因最大长度 private int maxiternum = 500;//最大迭代次数 private double mutationrate = 0.01;//基因变异的概率 private int maxmutationnum = 3;//最大变异步长 private int generation = 1;//当前遗传到第几代 private double bestscore;//最好得分 private double worstscore;//最坏得分 private double totalscore;//总得分 private double averagescore;//平均得分 private double x; //记录历史种群中最好的x值 private double y; //记录历史种群中最好的y值 private int genei;//x y所在代数 }
2、初始化种群,在遗传算法开始时,我们需要初始化一个原始种群,这就是原始的第一代。
private void init() { for (int i = 0; i < popsize; i++) { population = new arraylist<chromosome>(); chromosome chro = new chromosome(genesize); population.add(chro); } cacultescore(); }
3、在初始种群存在后,我们需要计算种群的适应度以及最好适应度、最坏适应度和平均适应度等。
private void cacultescore() { setchromosomescore(population.get(0)); bestscore = population.get(0).getscore(); worstscore = population.get(0).getscore(); totalscore = 0; for (chromosome chro : population) { setchromosomescore(chro); if (chro.getscore() > bestscore) { //设置最好基因值 bestscore = chro.getscore(); if (y < bestscore) { x = changex(chro); y = bestscore; genei = generation; } } if (chro.getscore() < worstscore) { //设置最坏基因值 worstscore = chro.getscore(); } totalscore += chro.getscore(); } averagescore = totalscore / popsize; //因为精度问题导致的平均值大于最好值,将平均值设置成最好值 averagescore = averagescore > bestscore ? bestscore : averagescore; }
4、在计算个体适应度的时候,我们需要根据基因计算对应的y值,这里我们设置两个抽象方法,具体实现由类的实现去实现。
private void setchromosomescore(chromosome chro) { if (chro == null) { return; } double x = changex(chro); double y = caculatey(x); chro.setscore(y); } /** * @param chro * @return * @description: 将二进制转化为对应的x */ public abstract double changex(chromosome chro); /** * @param x * @return * @description: 根据x计算y值 y=f(x) */ public abstract double caculatey(double x);
5、在计算完种群适应度之后,我们需要使用转盘赌法选取可以产生下一代的个体,这里有个条件就是只有个人的适应度不小于平均适应度才会长生下一代(适者生存)。
private chromosome getparentchromosome (){ double slice = math.random() * totalscore; double sum = 0; for (chromosome chro : population) { sum += chro.getscore(); //转到对应的位置并且适应度不小于平均适应度 if (sum > slice && chro.getscore() >= averagescore) { return chro; } } return null; }
6、选择可以产生下一代的个体之后,就要交配产生下一代。
private void evolve() { list<chromosome> childpopulation = new arraylist<chromosome>(); //生成下一代种群 while (childpopulation.size() < popsize) { chromosome p1 = getparentchromosome(); chromosome p2 = getparentchromosome(); list<chromosome> children = chromosome.genetic(p1, p2); if (children != null) { for (chromosome chro : children) { childpopulation.add(chro); } } } //新种群替换旧种群 list<chromosome> t = population; population = childpopulation; t.clear(); t = null; //基因突变 mutation(); //计算新种群的适应度 cacultescore(); }
7、在产生下一代的过程中,可能会发生基因变异。
private void mutation() { for (chromosome chro : population) { if (math.random() < mutationrate) { //发生基因突变 int mutationnum = (int) (math.random() * maxmutationnum); chro.mutation(mutationnum); } } }
8、将上述步骤一代一代的重复执行。
public void caculte() { //初始化种群 generation = 1; init(); while (generation < maxiternum) { //种群遗传 evolve(); print(); generation++; } }
编写实现类
由于上述遗传算法的类是一个抽象类,因此我们需要针对特定的事例编写实现类,假设我们计算 y=100-log(x)在[6,106]上的最值。
1、我们假设基因的长度为24(基因的长度由要求结果的有效长度确定),因此对应的二进制最大值为 1<< 24,我们做如下设置
public class geneticalgorithmtest extends geneticalgorithm{ public static final int num = 1 << 24; public geneticalgorithmtest() { super(24); } }
2、对x值的抽象方法进行实现
@override public double changex(chromosome chro) { // todo auto-generated method stub return ((1.0 * chro.getnum() / num) * 100) + 6; }
3、对y的抽象方法进行实现
@override public double caculatey(double x) { // todo auto-generated method stub return 100 - math.log(x); }
运行结果
遗传算法思考
自己看了很多遗传算法的介绍,上面提到的最优解都是最后一代的最值,自己就有一个疑问了,为什么我知道前面所有带中的最值,也就是程序中的x y值,为什么不能用x y值做遗传算法最后的结果值呢?
完整代码
1、chromosome类
/** *@description: 基因遗传染色体 */ package com.lulei.genetic.algorithm; import java.util.arraylist; import java.util.list; public class chromosome { private boolean[] gene;//基因序列 private double score;//对应的函数得分 public double getscore() { return score; } public void setscore(double score) { this.score = score; } /** * @param size * 随机生成基因序列 */ public chromosome(int size) { if (size <= 0) { return; } initgenesize(size); for (int i = 0; i < size; i++) { gene[i] = math.random() >= 0.5; } } /** * 生成一个新基因 */ public chromosome() { } /** * @param c * @return * @description: 克隆基因 */ public static chromosome clone(final chromosome c) { if (c == null || c.gene == null) { return null; } chromosome copy = new chromosome(); copy.initgenesize(c.gene.length); for (int i = 0; i < c.gene.length; i++) { copy.gene[i] = c.gene[i]; } return copy; } /** * @param size * @description: 初始化基因长度 */ private void initgenesize(int size) { if (size <= 0) { return; } gene = new boolean[size]; } /** * @param c1 * @param c2 * @description: 遗传产生下一代 */ public static list<chromosome> genetic(chromosome p1, chromosome p2) { if (p1 == null || p2 == null) { //染色体有一个为空,不产生下一代 return null; } if (p1.gene == null || p2.gene == null) { //染色体有一个没有基因序列,不产生下一代 return null; } if (p1.gene.length != p2.gene.length) { //染色体基因序列长度不同,不产生下一代 return null; } chromosome c1 = clone(p1); chromosome c2 = clone(p2); //随机产生交叉互换位置 int size = c1.gene.length; int a = ((int) (math.random() * size)) % size; int b = ((int) (math.random() * size)) % size; int min = a > b ? b : a; int max = a > b ? a : b; //对位置上的基因进行交叉互换 for (int i = min; i <= max; i++) { boolean t = c1.gene[i]; c1.gene[i] = c2.gene[i]; c2.gene[i] = t; } list<chromosome> list = new arraylist<chromosome>(); list.add(c1); list.add(c2); return list; } /** * @param num * @description: 基因num个位置发生变异 */ public void mutation(int num) { //允许变异 int size = gene.length; for (int i = 0; i < num; i++) { //寻找变异位置 int at = ((int) (math.random() * size)) % size; //变异后的值 boolean bool = !gene[at]; gene[at] = bool; } } /** * @return * @description: 将基因转化为对应的数字 */ public int getnum() { if (gene == null) { return 0; } int num = 0; for (boolean bool : gene) { num <<= 1; if (bool) { num += 1; } } return num; } }
2、geneticalgorithm类
/** *@description: */ package com.lulei.genetic.algorithm; import java.util.arraylist; import java.util.list; public abstract class geneticalgorithm { private list<chromosome> population = new arraylist<chromosome>(); private int popsize = 100;//种群数量 private int genesize;//基因最大长度 private int maxiternum = 500;//最大迭代次数 private double mutationrate = 0.01;//基因变异的概率 private int maxmutationnum = 3;//最大变异步长 private int generation = 1;//当前遗传到第几代 private double bestscore;//最好得分 private double worstscore;//最坏得分 private double totalscore;//总得分 private double averagescore;//平均得分 private double x; //记录历史种群中最好的x值 private double y; //记录历史种群中最好的y值 private int genei;//x y所在代数 public geneticalgorithm(int genesize) { this.genesize = genesize; } public void caculte() { //初始化种群 generation = 1; init(); while (generation < maxiternum) { //种群遗传 evolve(); print(); generation++; } } /** * @description: 输出结果 */ private void print() { system.out.println("--------------------------------"); system.out.println("the generation is:" + generation); system.out.println("the best y is:" + bestscore); system.out.println("the worst fitness is:" + worstscore); system.out.println("the average fitness is:" + averagescore); system.out.println("the total fitness is:" + totalscore); system.out.println("genei:" + genei + "\tx:" + x + "\ty:" + y); } /** * @description: 初始化种群 */ private void init() { for (int i = 0; i < popsize; i++) { population = new arraylist<chromosome>(); chromosome chro = new chromosome(genesize); population.add(chro); } cacultescore(); } /** * @author:lulei * @description:种群进行遗传 */ private void evolve() { list<chromosome> childpopulation = new arraylist<chromosome>(); //生成下一代种群 while (childpopulation.size() < popsize) { chromosome p1 = getparentchromosome(); chromosome p2 = getparentchromosome(); list<chromosome> children = chromosome.genetic(p1, p2); if (children != null) { for (chromosome chro : children) { childpopulation.add(chro); } } } //新种群替换旧种群 list<chromosome> t = population; population = childpopulation; t.clear(); t = null; //基因突变 mutation(); //计算新种群的适应度 cacultescore(); } /** * @return * @description: 轮盘赌法选择可以遗传下一代的染色体 */ private chromosome getparentchromosome (){ double slice = math.random() * totalscore; double sum = 0; for (chromosome chro : population) { sum += chro.getscore(); if (sum > slice && chro.getscore() >= averagescore) { return chro; } } return null; } /** * @description: 计算种群适应度 */ private void cacultescore() { setchromosomescore(population.get(0)); bestscore = population.get(0).getscore(); worstscore = population.get(0).getscore(); totalscore = 0; for (chromosome chro : population) { setchromosomescore(chro); if (chro.getscore() > bestscore) { //设置最好基因值 bestscore = chro.getscore(); if (y < bestscore) { x = changex(chro); y = bestscore; genei = generation; } } if (chro.getscore() < worstscore) { //设置最坏基因值 worstscore = chro.getscore(); } totalscore += chro.getscore(); } averagescore = totalscore / popsize; //因为精度问题导致的平均值大于最好值,将平均值设置成最好值 averagescore = averagescore > bestscore ? bestscore : averagescore; } /** * 基因突变 */ private void mutation() { for (chromosome chro : population) { if (math.random() < mutationrate) { //发生基因突变 int mutationnum = (int) (math.random() * maxmutationnum); chro.mutation(mutationnum); } } } /** * @param chro * @description: 设置染色体得分 */ private void setchromosomescore(chromosome chro) { if (chro == null) { return; } double x = changex(chro); double y = caculatey(x); chro.setscore(y); } /** * @param chro * @return * @description: 将二进制转化为对应的x */ public abstract double changex(chromosome chro); /** * @param x * @return * @description: 根据x计算y值 y=f(x) */ public abstract double caculatey(double x); public void setpopulation(list<chromosome> population) { this.population = population; } public void setpopsize(int popsize) { this.popsize = popsize; } public void setgenesize(int genesize) { this.genesize = genesize; } public void setmaxiternum(int maxiternum) { this.maxiternum = maxiternum; } public void setmutationrate(double mutationrate) { this.mutationrate = mutationrate; } public void setmaxmutationnum(int maxmutationnum) { this.maxmutationnum = maxmutationnum; } public double getbestscore() { return bestscore; } public double getworstscore() { return worstscore; } public double gettotalscore() { return totalscore; } public double getaveragescore() { return averagescore; } public double getx() { return x; } public double gety() { return y; } }
3、geneticalgorithmtest类
/** *@description: */ package com.lulei.genetic.algorithm; public class geneticalgorithmtest extends geneticalgorithm{ public static final int num = 1 << 24; public geneticalgorithmtest() { super(24); } @override public double changex(chromosome chro) { // todo auto-generated method stub return ((1.0 * chro.getnum() / num) * 100) + 6; } @override public double caculatey(double x) { // todo auto-generated method stub return 100 - math.log(x); } public static void main(string[] args) { geneticalgorithmtest test = new geneticalgorithmtest(); test.caculte(); } }
以上就是关于java遗传算法的详细介绍,希望对大家学习java遗传算法有所帮助。
上一篇: Mybatis拦截器实现分页
下一篇: 快速排序的原理及java代码实现