遗传算法Java实现以及TSP问题遗传算法求解

      在以前的文章(简单遗传算法MATLAB实现)中已经介绍过,遗传算法是一种基于达尔文生物进化论的启发式算法,它的核心思想就是优胜劣汰,适应性好的个体将在生存竞争中获得更大的生存机会,而适应差的将更有可能在竞争中失败,从而遭到淘汰。

1. 生物进化

    图1用了一个非常形象的实例,来表现进化机制对生物繁衍的作用。

image

图1 眼睛的进化(摘自http://blog.csdn.net/zzwu/article/details/561588)

    可以设想,曾有一个时期动物就根本没有眼睛。那时,动物在它们的环境中航行完全是靠嗅觉和触觉来躲避掠食它们的动物。他们也相当擅长于这样做,因为他们靠这样已经历了成千上万个世代。在那个时候,鼻子大和手脚长的男性是受女孩子们欢迎的。然而,突然有一天,当两个动物配对时,一个基因突变发生在为皮肤细胞提供的蓝图上。这一突变使其后代在他们的头上发育出了一个具有相当光敏效应的细胞,使其后代能足够识别周围环境是亮的还是暗的。这样就给他带来了一个微小的优点,因为,如果一种食肉动物,比如一只鹰,来到了某个范围以内,则它将阻挡了光线,这时,该动物就会感觉得到,就可迅速跑到隐蔽的地方去躲藏起来。另外,这种皮肤细胞还能指示现在是晚上或白天,或告诉他现在是在地面之上或地面之下,这些信息在捕食和吸取营养时都能为它提供方便。你能看到这一新型皮肤细胞将使这一动物与群体中其余的动物相比,具备了稍多的优点,从而更容易获得异性的青睐,因此也就有更多的生存和繁殖的机会。过了一段时间,由于进化机制的作用,许多动物的染色体中都会出现具有光敏皮肤细胞的基因。现在,如果你再作一些外推,想象这一光敏细胞基因得到了进一步的有利突变,则你能看到,经过许多许多世代后,光敏细胞经过分化形成为一个区域;这个区域不断变大,产生出一些更为确定的特征,例如形成一个晶体,或产生能区别颜色的视觉细胞;还可以想象,一个突变使某个动物由一个光敏区域改变为两个光敏区域,由此就使那个动物有了立体视觉。立体视觉对一个生物体来说是一个巨大的进步,因为这能精确告诉他目标离开他有多远。当然,你也可以把会对眼睛产生不利影响的突变装入同样那些基因。但这里重要的一点是,这样生长出来的后代将不会和已具备改进型眼睛的堂表亲戚们那样取得成功,它们最终将会灭绝。只有成功的基因才会得到继承。观察自然界中存在的任何特征就能发现,它们的进化都是利用无数微小的突变发展而来的,且它们都是对拥有者有利。

    人类的发展就是进化的一个极为成功的案例。人类从猿猴发展而来(虽然有些生物学家对此并不认同),经过了不能直立行走->可以直立行走->制造工具->创做语言->协同工作->组建社会->……->,这些都是进化的作用。

2. 遗传算法

    遗传算法的概念最早是由Bagley J.D 于1967年提出的。后来Michigan大学的J.H.Holland教授于1975年开始对遗传算法(Genetic Algorithm, GA)的机理进行系统化的研究。遗传算法是对达尔文生物进化理论的简单模拟,其遵循“适者生存”、“优胜略汰”的原理。遗传算法模拟一个人工种群的进化过程,并且通过选择、杂交以及变异等机制,种群经过若干代以后,总是达到最优(或近最优)的状态。

    自从遗传算法被提出以来,其得到了广泛的应用,特别是在函数优化、生产调度、模式识别、神经网络、自适应控制等领域,遗传算法更是发挥了重大的作用,大大提高了问题求解的效率。遗传算法也是当前“软计算”领域的重要研究课题。

    模式(Schema)理论是对遗传算法数学机理的深入解释。所谓一个模式指的是包含了符号*的字符串,例如一个二进制字符串1**000000*1就可以表达一个模式,*可以是0或者1,所以该模式可以匹配23 = 6个不同的二进制字符串实例。

    模式理论可以用公式1解释。

image

    模式定理:

在遗传算子选择、交叉以及变异的作用下,具有阶数低、长度短、平均适应度高于种群平均适应度的模式在子代中将以指数级增长。

还有两个定义:

定义1: 模式H中确定位置的个数称为该模式的阶,记为clip_image002[6]

定义2:模式H中第一个确定位置和最后一个确定位置之间的距离称为该模式的定义距(或定义长度),记为clip_image002[8]

例如:

0*******1**的阶为2,定义距为7.

    在基本遗传算法(或者简单遗传算法)中,有三个基本的遗传操作(operator),即选择操作(Selection)、交叉操作(Crossover)以及变异操作(Mutation)。关于这些操作详细的过程请参见简单遗传算法MATLAB实现。

3. TSP问题遗传算法实现

    关于TSP问题的定义,在上一篇(蚁群算法Java实现以及TSP问题蚁群算法求解)中已有详细的说明和定义,在此不予重述。

    用遗传算法求解TSP问题,最困难的是要解决三个方面的问题,即编码,交叉操作以及变异操作。从文献中发现这些问题主要有一下几种解决方法,见表1

表1 主要的编码方式,交叉操作以及变异操作

image

image

3.1 编码

    TSP问题编码一般有五种种不同的方式:

  • 基于二进制的编码
  • 基于矩阵的编码
  • 基于邻接的编码
  • 基于索引(Ordinary)的编码
  • 基于路径的编码

    基于二进制的编码是一种传统的编码方式,但是这种方式的编码,在经过遗传操作以后很难保证后代还是一个可行解,还需要另外的修正操作;基于矩阵的编码、邻接的编码以及索引的编码均比较复杂,并且需要占用大量的内存,应用的不是很广泛;目前最普遍用的编码方式就是基于路径的编码方式,因为它最直观最容易理解,操作起来也比较方便。以下将主要介绍基于路径的编码方式以及相关的遗传操作。

例如:

一个TSP问题,有六个城市{1,2,3,4,5,6},那么用基于路径的编码(1 3 5 4 6 2)就可以表示为一个个体。

3.2 交叉操作

    下面主要介绍几种常见的交叉操作的方式。

3.2.1 部分匹配法(Partially Matching Crossover, PMX)

    以两个父代个体为例:(1 2 3 4 5 6 7 8)和(2 4 6 8 7 5 3 1),随机选择两个交叉的点,假如第一个点为位置4,第二个交叉点为位置6,那么在两个点之间的位置将进行交叉,其它的位置进行复制或者用相匹配的数进行替换。在此实例中,第一个父代个体中4 5 6被选中,第二个父代个体中,8 7 5被选中。那么4 与8,5与7,6与5相匹配。匹配过程和如图2所示。

image

图2 PMX交叉操作

    首先将4 5 6与8 7 5分别加入到子代2和子代1中相应的位置,然后将其他位置上的数字直接复制到相应的后代中,如果该数字已经在该子代中已经存在,则用相应的匹配法则进行替换,例如子代1中将7复制进去的时候,发现7已经存在在子代中,通过查找相应的匹配法则,发现,7与5匹配,然后复制5,又发现5也已经存在在该子代中,在此查找匹配法则,发现5与6匹配,将6复制,6不存在在该子代中,所以可以将6复制进去,如此反复,知道子代中城市的数目达到定义的长度,该子代创建完成。

3.2.2 循环交叉法(Cycle Crossover, CX)

    依旧以两个父代个体为例:(1 2 3 4 5 6 7 8)和(2 4 6 8 7 5 3 1),在构造子代的过程中,首先从父代1中选取第一个元素,然后查找父代2中对应位置的元素在在父代1中的位置,将这个位置对应的元素假如到子代1中,如此过程反复,直到找到一个元素对应的父代2元素等于起始元素,次循环结束,然后将剩余未填充的位置用父代2相应的位置的元素进行填充,这样就可以完成子代1的创建。子代2创建方法类似。CX操作过程如图2所示。

image

图3 CX操作

    首先选择父代1中的第一个元素1,将它加入到子代1中,然后检查父代2中对应位置,该位置元素为2,在父代1中查找该元素,该元素在父代1中的位置为2, 将2加入到子代1的第二个位置,再次检查父代2中第二个位置的元素,它为4,然后查找它在父代1中的位置为4,将4加入到子代1的第四个位置,然后将其加入到子代1中对应的位置4,在检查父代2中该位置的元素,它为8,查找到它在父代1中的位置为8,然后将其加入到子代1中位置8,再次查找父代2中位置8的元素,它为1,等于起始选择的元素,循环结束,然后将子代1中3,5,6,7元素为空的位置,用父代2对应位置的元素进行填充,这些元素为6,7,5,3,所以得到的子代1为(1 2 5 4 7 5 3 8)。同样的方法,得到子代2为(2 4 3 8 5 6 7 1)。

3.2.3 次序交叉法1(Order Crossover, OX1)

    还以两个相同的父代个体为例:(1 2 3 4 5 6 7 8)和(2 4 6 8 7 5 3 1),随机选择两个交叉的点,假如第一个点为位置3,第二个交叉点为位置5,那么在两个点之间的位置将进行交叉。然后从第二个交叉点开始,将原来相应的父代按照顺序进行填充,如果选择的元素已经存在在该子代中,跳过该元素,选择下一个元素,这种过程反复进行,知道所有的城市都被选择一次。在此实例中,第一个父代个体中3 4 5被选中,第二个父代个体中,6 8 7被选中。匹配过程和如图4所示。

image

图4 OX1操作

    首先,将选择的位串进行替换,即3 4 5换到子代2中,6 8 7换到子代1中。现在从第二个交叉点开始,将父代1中的基因插入到子代1中, 所以,1 插入到第六个位置,2 插入到第七个位置,3插入到第八个位置,第二个交叉点后面已经填充满,将剩下的插入到第一个插入点前面的位置,所以4插入到第一个位置,5插入到第二个位置。这样,子代1构建完成。同样地方法,可以构建子代2.当遇到子代中已经存在的基因,就跳到下一个。

3.2.4 次序交叉法2(Order Crossover, OX2)

    还以两个相同的父代个体为例:(1 2 3 4 5 6 7 8)和(2 4 6 8 7 5 3 1),随机选择几个交叉的点,假如第一个点为位置2,第二个交叉点为位置是3,第三个为位置6。首先找到父代2中相应位置的基因在父代1中位置,然后将其用父代2中选择的位置的基因进行替换插入到子代1中相应的位置中。然后将其它的位置用OX1相似的方法进行填充。这样就可以得到子代1.同样,替换角色,可以得到子代2。具体的操作过程如图5所示。

image

图5 OX2操作

    首先找到父代2中第,2,3以及第六个位置的基因,它们为4,6和5,这三个基因在父代1中的位置为4,5和6,将它们替换成4,6,5,加入到子代1中相应的位置,然后将父代1中的基因按照顺序插入到子代1中,如果该基因已经存在在位串中,则跳过该基因,继续下一个。这样就可以构建完子代1。子代2也可以以相同的方法构造完成。

3.2.5 基于位置的交叉法(Position Based Crossover, POS)

    还以两个相同的父代个体为例:(1 2 3 4 5 6 7 8)和(2 4 6 8 7 5 3 1),随机选择几个交叉的点,假如第一个点为位置2,第二个交叉点为位置是3,第三个为位置6。将两个父代中这些选择基因按照顺序交换,并且插入到子代1和2中。然后对其它位置的基因,按照顺序插入。具体操作过程如图6所示。

image

图6 POS操作

    首先将2 3 6和4 6 8交换,分别插入到子代2和子代1相应的位置2,4,6中,然后将将父代1和父代2中的基因按照顺序插入到子代1和2中,如果该基因已经存在在位串中,则跳过该基因,继续下一个,知道位串的长度等于定义的长度。

3.2.6 交替位置交叉法(Alternating Position Crossover,APX)

    以两个父代个体为例:(1 2 3 4 5 6 7 8)和(3 7 5 1 6 8 2 4),APX是一种简单的交叉操作方法,它是轮流选择父代1和2中的基因,直到子代的长度达到定义的长度为止。具体操作如图7所示。

image

图7 APX操作

    首先选择父代1中的第一个元素1,加入到子代1中,然后选择父代2中的第一个元素3,它不等于1所以也加入到子代1中,然后再选择父代1中的第二个元素2,它也不包含在当前的位串中,所以,也加入进去,然后再选择父代2中的第二个元素,……,直到子代1的长度达到8为止。同样的方法,可以得到子代2.

3.3 变异操作

    同样地,下面介绍几种常见的变异操作方法。

3.3.1 替换变异(Displacement Mutation, DM)

    DM先从父代个体中选择一个子位串,然后再随机在剩下的位串中选择一个为止,并插入该子位串,如图8所示。

image

图8 DM操作

3.3.2 交换变异(Exchange Mutation, EM)

      EM是从父代个体中选择两个基因位置,然后呼唤这两个位置的基因。如图9所示。

image

图9 EM操作

3.3.3 插入变异(Insertion Mutation, IM)

    IM和DM类似,唯一的区别在于它是从父代个体中只选择一个基因,然后随机的插入到剩下的基因串中。如图10所示。

image

图10 IM操作

3.3.4 简单倒位变异(Simple Inversion Mutation, SIM)

    SIM先从父代个体中选择一个基因串,然后将这个基因串中所有的基因倒位放置,如图11所示。

image

图11 SIM操作

3.3.5 倒位变异(Inversion Mutation, IVM)

    IVM在SIM的基础上,随机选择一个插入位置,将这个到位后的基因串在插入到其中。如图12所示。

image

图12 IVM操作

3.3.6 争夺变异(Scramble Mutation, SM)

    SM非常简单,先随机从父代个体中选择一个基因串,然后将除了第一个基因外的基因均向前移动一位,将第一个基因移到最后一位。具体操作过程如图13所示。

image

图13 SM操作

4. TSP问题遗传算法求解以及Java实现

    该程序分成两个java类,Chromosome类和GA类。

Chromosome类的实现:

import java.util.Random;
   import java.util.Vector;
   
   public class Chromosome implements Cloneable {
   
     
     private int[] tour;
     private int[][] distance;
     private int cityNum;
    private double fitness;
    
    public Chromosome(){
      cityNum = 30;
      tour = new int[cityNum];
      distance = new int[cityNum][cityNum];
    }
    
    public Chromosome(int num, int[][] distance){
      this.cityNum = num;
      tour = new int[cityNum];
      this.distance = distance;
      
    }
    
    public void randomGeneration(){
      Vector<Integer> allowedCities = new Vector<Integer>();
      for (int i = 0; i < cityNum; i++) {
        allowedCities.add(Integer.valueOf(i));
      }
      
      Random r = new Random(System.currentTimeMillis());
      for (int i = 0; i < cityNum; i++) {
        
        int index = r.nextInt(allowedCities.size());
        int selectedCity = allowedCities.get(index).intValue();
        tour[i] = selectedCity;
        allowedCities.remove(index);
      }
      
    }
    
    public void print(){
      for (int i = 0; i < cityNum; i++) {
        System.out.print(tour[i] + ",");
      }
      System.out.println();
      System.out.println("Its fitness measure is: "+ getFitness());
    }
    
    private double calculatefitness(){
      /*for (int i = 0; i < cityNum; i++) {
        for (int j = 0; j < cityNum; j++) {
          System.out.print(distance[i][j]+"\t");
        }
        System.out.println();
      }*/
      double fitness = 0.0;
      int len = 0;
      for (int i = 0; i < cityNum - 1; i++) {
        len += distance[this.tour[i]][this.tour[i+1]]; 
      }
      len += distance[0][tour[cityNum-1]];
      fitness = 1.0/len;
      return fitness;
    }
    
    public int[] getTour() {
      return tour;
    }
  
    public void setTour(int[] tour) {
      this.tour = tour;
    }
  
    public int[][] getDistance() {
      return distance;
    }
  
    public void setDistance(int[][] distance) {
      this.distance = distance;
    }
  
    public int getCityNum() {
      return cityNum;
    }
  
    public void setCityNum(int cityNum) {
      this.cityNum = cityNum;
    }
  
    public double getFitness() {
      this.fitness = calculatefitness();
      return fitness;
    }
  
    public void setFitness(double fitness) {
      this.fitness = fitness;
    }
  
   @Override
   protected Object clone() throws CloneNotSupportedException {
     Chromosome chromosome = (Chromosome) super.clone();
     chromosome.cityNum = this.cityNum;
     chromosome.distance = this.distance.clone();
     chromosome.tour = this.tour.clone();
     chromosome.fitness = this.fitness;
     return chromosome;
   }
   
   
 
 }
GA类的实现:

import java.io.BufferedReader;
   
  import java.io.FileInputStream;
  import java.io.FileNotFoundException;
  import java.io.FileOutputStream;
   
  import java.io.IOException;
  import java.io.InputStreamReader;
  import java.util.ArrayList;
  import java.util.List;
  import java.util.Random;
  
  
  public class GA {
  
    private Chromosome[] chromosomes;
    private Chromosome[] nextGeneration;
    private int N;
    private int cityNum;
    private double p_c_t;
    private double p_m_t;
    private int MAX_GEN;
    private int bestLength;
    private int[] bestTour;
    private double bestFitness;
    private double[] averageFitness;
    private int[][] distance;
    private String filename;
    
    public GA(){
      N = 100;
      cityNum = 30;
      p_c_t = 0.9;
      p_m_t = 0.1;
      MAX_GEN = 1000;
      bestLength = 0;
      bestTour = new int [cityNum];
      bestFitness = 0.0;
      averageFitness = new double[MAX_GEN];
      chromosomes = new Chromosome[N];
      distance = new int[cityNum][cityNum];
      
    }
    
    /**
     * Constructor of GA class
     * @param n 种群规模
     * @param num 城市规模
     * @param g 运行代数
     * @param p_c 交叉率
     * @param p_m 变异率
     * @param filename 数据文件名
     */
    public GA(int n, int num, int g, double p_c, double p_m, String filename){
      this.N = n;
      this.cityNum = num;
      this.MAX_GEN = g;
      this.p_c_t = p_c;
      this.p_m_t = p_m;
      bestTour = new int [cityNum];
      averageFitness = new double[MAX_GEN];
      bestFitness = 0.0;
      chromosomes = new Chromosome[N];
      nextGeneration = new Chromosome[N];
      distance = new int[cityNum][cityNum];
      this.filename = filename;
    }
    
    public void solve() throws IOException{
      System.out.println("---------------------Start initilization---------------------");
      init();
      System.out.println("---------------------End initilization---------------------");
      System.out.println("---------------------Start evolution---------------------");
      for (int i = 0; i < MAX_GEN; i++) {
        System.out.println("-----------Start generation "+ i+"----------");
        evolve(i);
        System.out.println("-----------End generation "+ i+"----------");
      }
      System.out.println("---------------------End evolution---------------------");
      printOptimal();
      outputResults();
      
    }
    /**
     * 初始化GA
     * @throws IOException
     */
    @SuppressWarnings("resource")
    private void init() throws IOException{
      //读取数据文件
      int[] x;  
          int[] y;  
          String strbuff;  
          BufferedReader data = new BufferedReader(new InputStreamReader(new FileInputStream(filename)));  
          
          distance = new int[cityNum][cityNum];  
          x = new int[cityNum];  
          y = new int[cityNum];  
          for (int i = 0; i < cityNum; i++) {  
             strbuff = data.readLine(); 
             String[] strcol = strbuff.split("");  
             x[i] = Double.valueOf(strcol[1]).intValue();  
             y[i] = Double.valueOf(strcol[2]).intValue();  
         }  
         //计算距离矩阵 ,针对具体问题,距离计算方法也不一样,此处用的是att48作为案例,它有48个城市,距离计算方法为伪欧氏距离,最优值为10628 
         for (int i = 0; i < cityNum - 1; i++) {  
             distance[i][i] = 0;  //对角线为0
             for (int j = i + 1; j < cityNum; j++) {  
               double rij = Math.sqrt((x[i] - x[j]) * (x[i] - x[j])+ (y[i] - y[j]) * (y[i] - y[j]));
               int tij = (int) Math.round(rij);
               //if (tij < rij) {
                 distance[i][j] = tij;  
                     distance[j][i] = distance[i][j];  
         /*}else {
           distance[i][j] = tij;  
                     distance[j][i] = distance[i][j]; 
         }*/
             }  
         }  
         distance[cityNum - 1][cityNum - 1] = 0;  
     
        
         
     for (int i = 0; i < N; i++) {
       Chromosome chromosome = new Chromosome(cityNum, distance);
       chromosome.randomGeneration();
       chromosomes[i] = chromosome;
       chromosome.print();
     }
   }
   
   private void evolve(int g){
     double[] selectionP = new double[N];//选择概率
     double sum = 0.0;
     double tmp = 0.0;
     
     for (int i = 0; i < N; i++) {
       sum += chromosomes[i].getFitness();
       if (chromosomes[i].getFitness() > bestFitness) {
         bestFitness = chromosomes[i].getFitness();
         bestLength = (int) (1.0/bestFitness); 
         for (int j = 0; j < cityNum; j++) {
           bestTour[j] = chromosomes[i].getTour()[j];
         }
         
       }
     }
     averageFitness[g] = sum/N;
     
     System.out.println("The average fitness in "+g+ " generation is: "+averageFitness[g]+ ", and the best fitness is: "+bestFitness);
     for (int i = 0; i < N; i++) {
       tmp += chromosomes[i].getFitness()/sum;
       selectionP[i] = tmp;
     }
     Random random = new Random(System.currentTimeMillis());
     for (int i = 0; i < N; i = i+2) {
       
       Chromosome[] children = new Chromosome[2];
       //轮盘赌选择两个染色体
       //System.out.println("---------start selection-----------");
       //System.out.println();
       for (int j = 0; j < 2; j++) {
         
         int selectedCity=0;
         for (int k = 0; k < N - 1; k++) {
           double p = random.nextDouble();
           if (p > selectionP[k] && p <= selectionP[k+1]) {
             selectedCity = k;
           }
           if (k==0 && random.nextDouble() <= selectionP[k]) {
             selectedCity = 0;
           }
         }
         try {
           children[j] = (Chromosome) chromosomes[selectedCity].clone();
           
           //children[j].print();
           //System.out.println();
         } catch (CloneNotSupportedException e) {
           // TODO Auto-generated catch block
           e.printStackTrace();
         }
       }
       
       //交叉操作(OX1)
       
       //System.out.println("----------Start crossover----------");
       //System.out.println();
       //Random random = new Random(System.currentTimeMillis());
       if (random.nextDouble() < p_c_t) {
         //System.out.println("crossover");
         //random = new Random(System.currentTimeMillis());
         //定义两个cut点
         int cutPoint1 = -1;
         int cutPoint2 = -1;
         int r1 = random.nextInt(cityNum);
         if (r1 > 0 && r1 < cityNum -1) {
           cutPoint1 = r1;
           //random = new Random(System.currentTimeMillis());
           int r2 = random.nextInt(cityNum - r1);
           if (r2 == 0) {
             cutPoint2 = r1 + 1;
           }else if(r2 > 0){
             cutPoint2 = r1 + r2;
           }
           
         }
         if (cutPoint1 > 0 && cutPoint2 > 0) {
           //System.out.println("Cut point1 is: "+cutPoint1 +", and cut point2 is: "+cutPoint2);
           int [] tour1 = new int[cityNum];
           int [] tour2 = new int[cityNum];
           if (cutPoint2 == cityNum - 1) {
             for (int j = 0; j < cityNum; j++) {
               tour1[j] = children[0].getTour()[j];
               tour2[j] = children[1].getTour()[j];
             }
           }else {
             
             //int n = 1;
             for (int j = 0; j < cityNum; j++) {
               if (j < cutPoint1) {
                 tour1[j] = children[0].getTour()[j];
                 tour2[j] = children[1].getTour()[j];
               }else if (j >= cutPoint1 && j < cutPoint1+cityNum-cutPoint2-1) {
                 tour1[j] = children[0].getTour()[j+cutPoint2-cutPoint1+1];
                 tour2[j] = children[1].getTour()[j+cutPoint2-cutPoint1+1];
               }else {
                 tour1[j] = children[0].getTour()[j-cityNum+cutPoint2+1];
                 tour2[j] = children[1].getTour()[j-cityNum+cutPoint2+1];
               }
               
             }
           }
           /*System.out.println("The two tours are: ");
           for (int j = 0; j < cityNum; j++) {
             System.out.print(tour1[j] +"\t");
           }
           System.out.println();
           for (int j = 0; j < cityNum; j++) {
             System.out.print(tour2[j] +"\t");
           }
           System.out.println();*/
           
           for (int j = 0; j < cityNum; j++) {
             if (j < cutPoint1 || j > cutPoint2) {
               
               children[0].getTour()[j] = -1;
               children[1].getTour()[j] = -1;
             }else {
               int tmp1 = children[0].getTour()[j];
               children[0].getTour()[j] = children[1].getTour()[j];
               children[1].getTour()[j] = tmp1;
             }
           }
           /*for (int j = 0; j < cityNum; j++) {
             System.out.print(children[0].getTour()[j]+"\t");
           }
           System.out.println();
           for (int j = 0; j < cityNum; j++) {
             System.out.print(children[1].getTour()[j]+"\t");
           }
           System.out.println();*/
           if (cutPoint2 == cityNum - 1) {
             int position = 0;
             for (int j = 0; j < cutPoint1; j++) {
               for (int m = position; m < cityNum; m++) {
                 boolean flag = true;
                 for (int n = 0; n < cityNum; n++) {
                   if (tour1[m] == children[0].getTour()[n]) {
                     flag = false;
                     break;
                   }
                 }
                 if (flag) {
                   
                   children[0].getTour()[j] = tour1[m];
                   position = m + 1;
                   break;
                 }
               }
             }
             position = 0;
             for (int j = 0; j < cutPoint1; j++) {
               for (int m = position; m < cityNum; m++) {
                 boolean flag = true;
                 for (int n = 0; n < cityNum; n++) {
                   if (tour2[m] == children[1].getTour()[n]) {
                     flag = false;
                     break;
                   }
                 }
                 if (flag) {
                   children[1].getTour()[j] = tour2[m];
                   position = m + 1;
                   break;
                 }
               }
             }
             
           }else {
             
             int position = 0;
             for (int j = cutPoint2 + 1; j < cityNum; j++) {
               for (int m = position; m < cityNum; m++) {
                 boolean flag = true;
                 for (int n = 0; n < cityNum; n++) {
                   if (tour1[m] == children[0].getTour()[n]) {
                     flag = false;
                     break;
                   }
                 }
                 if (flag) {
                   children[0].getTour()[j] = tour1[m];
                   position = m+1;
                   break;
                 }
               }
             }
             for (int j = 0; j < cutPoint1; j++) {
               for (int m = position; m < cityNum; m++) {
                 boolean flag = true;
                 for (int n = 0; n < cityNum; n++) {
                   if (tour1[m] == children[0].getTour()[n]) {
                     flag = false;
                     break;
                   }
                 }
                 if (flag) {
                   children[0].getTour()[j] = tour1[m];
                   position = m+1;
                   break;
                 }
               }
             }
             
             
             position = 0;
             for (int j = cutPoint2 + 1; j < cityNum; j++) {
               for (int m = position; m < cityNum; m++) {
                 boolean flag = true;
                 for (int n = 0; n < cityNum; n++) {
                   if (tour2[m] == children[1].getTour()[n]) {
                     flag = false;
                     break;
                   }
                 }
                 if (flag) {
                   children[1].getTour()[j] = tour2[m];
                   position = m+1;
                   break;
                 }
               }
             }
             for (int j = 0; j < cutPoint1; j++) {
               for (int m = position; m < cityNum; m++) {
                 boolean flag = true;
                 for (int n = 0; n < cityNum; n++) {
                   if (tour2[m] == children[1].getTour()[n]) {
                     flag = false;
                     break;
                   }
                 }
                 if (flag) {
                   children[1].getTour()[j] = tour2[m];
                   position = m+1;
                   break;
                 }
               }
             }
           }
           
           
           
         }
       }
       //children[0].print();
       //children[1].print();
       
       
       //变异操作(DM)
       
       //System.out.println("---------Start mutation------");
       //System.out.println();
       //random = new Random(System.currentTimeMillis());
       if (random.nextDouble() < p_m_t) {
         //System.out.println("mutation");
         for (int j = 0; j < 2; j++) {
           //random = new Random(System.currentTimeMillis());
           //定义两个cut点
           int cutPoint1 = -1;
           int cutPoint2 = -1;
           int r1 = random.nextInt(cityNum);
           if (r1 > 0 && r1 < cityNum -1) {
             cutPoint1 = r1;
             //random = new Random(System.currentTimeMillis());
             int r2 = random.nextInt(cityNum - r1);
             if (r2 == 0) {
               cutPoint2 = r1 + 1;
             }else if(r2 > 0){
               cutPoint2 = r1 + r2;
             }
             
           }
           
           
           if (cutPoint1 > 0 && cutPoint2 > 0) {
             List<Integer> tour = new ArrayList<Integer>();
             //System.out.println("Cut point1 is "+cutPoint1+", and cut point2 is "+cutPoint2);
             if (cutPoint2 == cityNum - 1) {
               for (int k = 0; k < cutPoint1; k++) {
                 tour.add(Integer.valueOf(children[j].getTour()[k]));
               }
             }else {
               for (int k = 0; k < cityNum; k++) {
                 if (k < cutPoint1 || k > cutPoint2) {
                   tour.add(Integer.valueOf(children[j].getTour()[k]));
                 }
               }
             }
             //random = new Random(System.currentTimeMillis());
             int position = random.nextInt(tour.size());
             
             if (position == 0) {
               
               for (int k = cutPoint2; k >= cutPoint1; k--) {
                 tour.add(0, Integer.valueOf(children[j].getTour()[k]));
               }
               
             }else if (position == tour.size()-1) {
               
               for (int k = cutPoint1; k <= cutPoint2; k++) {
                 tour.add(Integer.valueOf(children[j].getTour()[k]));
               }
               
             } else {
               
               for (int k = cutPoint1; k <= cutPoint2; k++) {
                 tour.add(position, Integer.valueOf(children[j].getTour()[k]));
               }
               
             }
             
             
             for (int k = 0; k < cityNum; k++) {
               children[j].getTour()[k] = tour.get(k).intValue();
               
             }
             //System.out.println();
           }
           
           
         }
       }
       
       
       //children[0].print();
       //children[1].print();
       
       
       nextGeneration[i] = children[0];
       nextGeneration[i+1] = children[1];
       
     }
     
     for (int k = 0; k < N; k++) {
       try {
         chromosomes[k] = (Chromosome) nextGeneration[k].clone();
         
       } catch (CloneNotSupportedException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
       }
     }
     /*System.out.println("Next generation is:");
     for (int k = 0; k < N; k++) {
       chromosomes[k].print();
     }*/
   }
   
   private void printOptimal(){
     System.out.println("The best fitness is: " + bestFitness);
     System.out.println("The best tour length is: " + bestLength);
     System.out.println("The best tour is: ");
     for (int i = 0; i < cityNum; i++) {
       System.out.print(bestTour[i] + ",");
     }
     System.out.println();
   }
   
   private void outputResults(){
     String filename = "C://result.txt";
     /*File file = new File(filename);
     if (!file.exists()) {
       try {
         file.createNewFile();
       } catch (IOException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
       }
     }
     */
     try {
       @SuppressWarnings("resource")
       FileOutputStream outputStream = new FileOutputStream(filename);
       for (int i = 0; i < averageFitness.length; i++) {
         String line = String.valueOf(averageFitness[i]) + "\r\n";
         
         outputStream.write(line.getBytes());
         
       }
       
     } catch (FileNotFoundException e) {
       // TODO Auto-generated catch block
       e.printStackTrace();
     }catch (IOException e) {
       // TODO Auto-generated catch block
       e.printStackTrace();
     }
     
     
   }
   public Chromosome[] getChromosomes() {
     return chromosomes;
   }
   public void setChromosomes(Chromosome[] chromosomes) {
     this.chromosomes = chromosomes;
   }
   public int getCityNum() {
     return cityNum;
   }
   public void setCityNum(int cityNum) {
     this.cityNum = cityNum;
   }
   public double getP_c_t() {
     return p_c_t;
   }
   public void setP_c_t(double p_c_t) {
     this.p_c_t = p_c_t;
   }
   public double getP_m_t() {
     return p_m_t;
   }
   public void setP_m_t(double p_m_t) {
     this.p_m_t = p_m_t;
   }
   public int getMAX_GEN() {
     return MAX_GEN;
   }
   public void setMAX_GEN(int mAX_GEN) {
     MAX_GEN = mAX_GEN;
   }
   public int getBestLength() {
     return bestLength;
   }
   public void setBestLength(int bestLength) {
     this.bestLength = bestLength;
   }
   public int[] getBestTour() {
     return bestTour;
   }
   public void setBestTour(int[] bestTour) {
     this.bestTour = bestTour;
   }
   public double[] getAverageFitness() {
     return averageFitness;
   }
   public void setAverageFitness(double[] averageFitness) {
     this.averageFitness = averageFitness;
   }
   public int getN() {
     return N;
   }
 
 
   public void setN(int n) {
     N = n;
   }
 
 
   public int[][] getDistance() {
     return distance;
   }
 
   public void setDistance(int[][] distance) {
     this.distance = distance;
   }
 
   /**
    * @param args
    * @throws IOException 
    */
   public static void main(String[] args) throws IOException {
     GA ga = new GA(2, 52, 1, 0.95, 0.75, "c://data.txt");
     ga.solve();
   }
 
 }

5. 总结

    TSP问题是一类NP hard问题,用传统的方法非常难以获得最优解,特别是当问题规模很大时,最优解基本上不可能能得到。这时候,基于启发式的算法就可以发挥其作用,虽然它并不能保证可以获得最优解,但是可以以较快的速度得对近最优解。此文和前一篇类似,都是用启发式算法(蚁群算法和遗传算法)求解TSP问题,并且可以获得比较好的结果。但是程序的参数以及效率需要进一步的测试和研究,才能得到最佳的参数设置。

你可能感兴趣的:(算法,AI)