ake555 发表于 2024-7-15 18:22

遗传优化算法 C/C++ 代码怎么写?

遗传优化算法 C/C++ 代码怎么写?

VIVIANY 发表于 2024-7-15 18:22

遗传优化算法的C/C++代码实现如下:

1. 定义个体结构体

```c++
struct Individual {
    vector<double> genes; // 基因序列
    double fitness; // 适应度值
};
```

2. 初始化种群

```c++
vector<Individual> population; // 种群

// 初始化种群
void initPopulation(int popSize, int geneSize) {
    for (int i = 0; i < popSize; i++) {
      Individual individual;
      for (int j = 0; j < geneSize; j++) {
            individual.genes.push_back(rand() % 100); // 随机生成基因序列
      }
      population.push_back(individual);
    }
}
```

3. 计算适应度值

```c++
// 计算适应度值
double calcFitness(Individual individual) {
    double fitness = 0;
    for (int i = 0; i < individual.genes.size(); i++) {
      fitness += individual.genes;
    }
    return fitness;
}

// 更新种群适应度值
void updateFitness() {
    for (int i = 0; i < population.size(); i++) {
      population.fitness = calcFitness(population);
    }
}
```

4. 选择操作

```c++
// 选择操作
vector<Individual> selection() {
    vector<Individual> parents;
    double totalFitness = 0;
    for (int i = 0; i < population.size(); i++) {
      totalFitness += population.fitness;
    }
    for (int i = 0; i < population.size(); i++) {
      double r = (double)rand() / RAND_MAX * totalFitness;
      double sum = 0;
      for (int j = 0; j < population.size(); j++) {
            sum += population.fitness;
            if (sum >= r) {
                parents.push_back(population);
                break;
            }
      }
    }
    return parents;
}
```

5. 交叉操作

```c++
// 交叉操作
vector<Individual> crossover(vector<Individual> parents, double crossoverRate) {
    vector<Individual> offspring;
    for (int i = 0; i < parents.size(); i += 2) {
      if ((double)rand() / RAND_MAX < crossoverRate) {
            int point = rand() % parents.genes.size();
            Individual child1, child2;
            for (int j = 0; j < point; j++) {
                child1.genes.push_back(parents.genes);
                child2.genes.push_back(parents.genes);
            }
            for (int j = point; j < parents.genes.size(); j++) {
                child1.genes.push_back(parents.genes);
                child2.genes.push_back(parents.genes);
            }
            offspring.push_back(child1);
            offspring.push_back(child2);
      } else {
            offspring.push_back(parents);
            offspring.push_back(parents);
      }
    }
    return offspring;
}
```

6. 变异操作

```c++
// 变异操作
void mutation(vector<Individual>& offspring, double mutationRate) {
    for (int i = 0; i < offspring.size(); i++) {
      for (int j = 0; j < offspring.genes.size(); j++) {
            if ((double)rand() / RAND_MAX < mutationRate) {
                offspring.genes = rand() % 100;
            }
      }
    }
}
```

7. 遗传优化算法主函数

```c++
int main() {
    srand(time(NULL));
    int popSize = 100; // 种群大小
    int geneSize = 10; // 基因序列长度
    double crossoverRate = 0.8; // 交叉概率
    double mutationRate = 0.1; // 变异概率
    int maxGeneration = 100; // 最大迭代次数

    initPopulation(popSize, geneSize);
    updateFitness();

    for (int i = 0; i < maxGeneration; i++) {
      vector<Individual> parents = selection();
      vector<Individual> offspring = crossover(parents, crossoverRate);
      mutation(offspring, mutationRate);
      population = offspring;
      updateFitness();
    }

    // 输出最优

freshfish 发表于 2024-7-15 18:22


遗传优化算法是一种利用自然选择和基因遗传规律进行搜索和优化的算法。下面以二进制遗传算法(Binary Genetic Algorithm,简称BGA)为例,介绍如何用 C/C++ 语言实现遗传优化算法。
BGA 要解决的问题一般都能够通过一个优化函数来描述,如要在一个空间内(N个变量,每个变量有M个取值范围)寻找函数取值最大或最小的点,可以通过寻找优化函数的全局最小值或最大值来完成任务。
以下是 BGA 的 C/C++ 实现过程:
1.首先定义问题的优化函数,并且确定变量的维数、取值范围等问题。
2.然后定义个体(Individual)和种群(Population)的数据结构。每个个体一般包括基因和适应度两个属性,基因是决定个体性状和特征的二进制序列,而适应度则是个体在当前环境下的表现。
3.初始化种群,把每个个体的基因都随机生成。
4.计算每个个体的适应度,并且根据适应度排序。
5.从种群中选择某些个体进行交叉(Crossover)和变异(Mutation)。交叉就是将两个个体的基因进行部分混合并产生新的个体,变异则是随机改变某个个体的某个基因位。
6.重复第4-5步,直到达到结束条件。例如达到固定迭代次数、算法收敛等情况。
7.输出种群中适应度最好的个体的基因序列和对应的适应度值,即为问题的最优解。
参考代码如下所示:
```c++
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <ctime>

using namespace std;

// 问题的维数和每个维度的取值范围
const int N = 2;
const int L = 0, R = 10;
// 种群大小
const int POPSIZE = 100;
// 迭代次数
const int ITERATIONS = 1000;
// 交叉概率
const double CROSSOVER_PROBABILITY = 0.9;
// 变异概率
const double MUTATION_PROBABILITY = 0.1;

// 个体
struct Individual {
    int gene; // 基因
    double fitness; // 适应度
};

// 种群
struct Population {
    Individual individuals;
    double total_fitness; // 种群中所有个体适应度之和
};

// 优化函数
double fitness_function(int x, int y) {
    return x * x + y * y;
}

// 初始化种群
void init_population(Population &population) {
    for (int i = 0; i < POPSIZE; i++) {
      for (int j = 0; j < N; j++) {
            population.individuals.gene = rand() % (R - L + 1) + L; // 随机生成基因
      }
      population.individuals.fitness = fitness_function(population.individuals.gene, population.individuals.gene); // 计算适应度
    }
    population.total_fitness = 0;
    for (int i = 0; i < POPSIZE; i++) {
      population.total_fitness += population.individuals.fitness;
    }
}

// 选择
Individual select(Population population) {
    double fitness_prob; // 计算每个个体被选择的概率
    double fit_sum = 0;
    for (int i = 0; i < POPSIZE; i++) {
      fitness_prob = population.individuals.fitness / population.total_fitness;
      fit_sum += fitness_prob;
    }
    for (int i = 0; i < POPSIZE; i++) {
      fitness_prob /= fit_sum; // 归一化
    }
    // 用轮盘赌算法选择个体
    double p = (double) rand() / RAND_MAX; // 随机选择一个概率
    int index = 0;
    while (p > 0) {
      p -= fitness_prob;
      index++;
    }
    index--;
    return population.individuals;
}

// 交叉
void crossover(Individual &a, Individual &b) {
    double p = (double) rand() / RAND_MAX; // 随机选择一个概率
    if (p > CROSSOVER_PROBABILITY) {
      return;
    }
    int point = rand() % N; // 随机选择一个交叉点
    for (int i = point; i < N; i++) { // 交换后半部分
      int temp = a.gene;
      a.gene = b.gene;
      b.gene = temp;
    }
}

// 变异
void mutation(Individual &a) {
    double p = (double) rand() / RAND_MAX; // 随机选择一个概率
    if (p > MUTATION_PROBABILITY) {
      return;
    }
    int point = rand() % N; // 随机选择一个基因位
    a.gene = rand() % (R - L + 1) + L; // 随机改变该位基因的值
}

// 更新种群
void update_population(Population &population) {
    Population new_population;
    new_population.total_fitness = 0;
    // 选择两个个体,进行交叉和变异
    for (int i = 0; i < POPSIZE; i++) {
      Individual a = select(population);
      Individual b = select(population);
      crossover(a, b);
      mutation(a);
      mutation(b);
      a.fitness = fitness_function(a.gene, a.gene);
      b.fitness = fitness_function(b.gene, b.gene);
      new_population.individuals = a;
      new_population.total_fitness += a.fitness;
      i++;
      if (i >= POPSIZE) {
            break;
      }
      new_population.individuals = b;
      new_population.total_fitness += b.fitness;
    }
    population = new_population;
}

int main()
{
    srand(time(NULL)); // 设置随机种子
    Population population;
    init_population(population);
    for (int i = 0; i < ITERATIONS; i++) {
      update_population(population);
    }
    // 输出种群中适应度最好的个体
    Individual best = population.individuals;
    for (int i = 1; i < POPSIZE; i++) {
      if (population.individuals.fitness > best.fitness) {
            best = population.individuals;
      }
    }
    cout << "Best individual: ";
    for (int i = 0; i < N; i++) {
      cout << best.gene << " ";
    }
    cout << endl << "Fitness value: " << best.fitness << endl;

    return 0;
}
```上述代码实现了二维优化问题的求解过程,可以根据具体问题和需要进行相应的修改和调整。
页: [1]
查看完整版本: 遗传优化算法 C/C++ 代码怎么写?