文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

C#中怎么实现一个遗传算法

2023-06-17 23:51

关注

这篇文章给大家介绍C#中怎么实现一个遗传算法,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

C#遗传算法实现代码:

using System;  using System.Collections.Generic;  using System.Text;  namespace GA  {  class Program  {  static void Main(string[] args)  {  World world = new World();  world.Init();  for (int i = 0; i < 50; i++)  {  world.Evolve();  Console.WriteLine(i);  world.Show();  }  }  }   class World  {  int kMaxFlowers = 11;  Random Rnd = new Random();  public int[] temperature;  public int[] water;  public int[] sunlight;  public int[] nutrient;  public int[] beneficialInsect;  public int[] harmfulInsect;  public int currentTemperature;  public int currentWater;  public int currentSunlight;  public int currentNutrient;  public int currentBeneficialInsect;  public int currentHarmfulInsect;  public World()  {  temperature = new int[kMaxFlowers];  water = new int[kMaxFlowers];  sunlight = new int[kMaxFlowers];  nutrient = new int[kMaxFlowers];  beneficialInsect = new int[kMaxFlowers];  harmfulInsect = new int[kMaxFlowers];  }  /// <summary> /// 初始化***代花朵的基因结构  /// </summary> public void Init()  {  for (int i = 1; i < kMaxFlowers; i++)  {  temperature[i] = Rnd.Next(1, 75);  water[i] = Rnd.Next(1, 75);  sunlight[i] = Rnd.Next(1, 75);  nutrient[i] = Rnd.Next(1, 75);  beneficialInsect[i] = Rnd.Next(1, 75);  harmfulInsect[i] = Rnd.Next(1, 75);  }  currentTemperature = Rnd.Next(1, 75);  currentWater = Rnd.Next(1, 75);  currentSunlight = Rnd.Next(1, 75);  currentNutrient = Rnd.Next(1, 75);  currentBeneficialInsect = Rnd.Next(1, 75);  currentHarmfulInsect = Rnd.Next(1, 75);  }  /// <summary> /// 越大说明花朵的适应环境的能力差,小说明适应环境的能力强  /// </summary> /// <param name="flower"></param> /// <returns></returns> private int Fitness(int flower)  {  int theFitness = 0;  theFitness = Math.Abs(temperature[flower] - currentTemperature);  theFitnesstheFitness = theFitness + Math.Abs(water[flower] - currentWater);  theFitnesstheFitness = theFitness + Math.Abs(sunlight[flower] -  currentSunlight);  theFitnesstheFitness = theFitness + Math.Abs(nutrient[flower] -  currentNutrient);  theFitnesstheFitness = theFitness + Math.Abs(beneficialInsect[flower] -  currentBeneficialInsect);  theFitnesstheFitness = theFitness + Math.Abs(harmfulInsect[flower] -  currentHarmfulInsect);  return (theFitness);  }  /// <summary> /// 排除适应能力差的花朵,让适应能力强的花朵杂交繁殖,产生下一代。同时有一定的概率变异。  /// </summary> public void Evolve()  {  int[] fitTemperature = new int[kMaxFlowers];  int[] fitWater = new int[kMaxFlowers];  int[] fitSunlight = new int[kMaxFlowers];  int[] fitNutrient = new int[kMaxFlowers];  int[] fitBeneficialInsect = new int[kMaxFlowers];  int[] fitHarmfulInsect = new int[kMaxFlowers];  int[] fitness = new int[kMaxFlowers];  int i;  int leastFit = 0;  int leastFitIndex = 1;  for (i = 1; i < kMaxFlowers; i++)  if (Fitness(i) > leastFit)  {  leastFit = Fitness(i);  leastFitIndex = i;  }  temperature[leastFitIndex] = temperature[Rnd.Next(1, 10)];  water[leastFitIndex] = water[Rnd.Next(1, 10)];  sunlight[leastFitIndex] = sunlight[Rnd.Next(1, 10)];  nutrient[leastFitIndex] = nutrient[Rnd.Next(1, 10)];  beneficialInsect[leastFitIndex] = beneficialInsect[Rnd.Next(1, 10)];  harmfulInsect[leastFitIndex] = harmfulInsect[Rnd.Next(1, 10)];  for (i = 1; i < kMaxFlowers; i++)  {  fitTemperature[i] = temperature[Rnd.Next(1, 10)];  fitWater[i] = water[Rnd.Next(1, 10)];  fitSunlight[i] = sunlight[Rnd.Next(1, 10)];  fitNutrient[i] = nutrient[Rnd.Next(1, 10)];  fitBeneficialInsect[i] = beneficialInsect[Rnd.Next(1, 10)];  fitHarmfulInsect[i] = harmfulInsect[Rnd.Next(1, 10)];  }  for (i = 1; i < kMaxFlowers; i++)  {  temperature[i] = fitTemperature[i];  water[i] = fitWater[i];  sunlight[i] = fitSunlight[i];  nutrient[i] = fitNutrient[i];  beneficialInsect[i] = fitBeneficialInsect[i];  harmfulInsect[i] = fitHarmfulInsect[i];  }  for (i = 1; i < kMaxFlowers; i++)  {  if (Rnd.Next(1, 100) == 1)  temperature[i] = Rnd.Next(1, 75);  if (Rnd.Next(1, 100) == 1)  water[i] = Rnd.Next(1, 75);  if (Rnd.Next(1, 100) == 1)  sunlight[i] = Rnd.Next(1, 75);  if (Rnd.Next(1, 100) == 1)  nutrient[i] = Rnd.Next(1, 75);  if (Rnd.Next(1, 100) == 1)  beneficialInsect[i] = Rnd.Next(1, 75);  if (Rnd.Next(1, 100) == 1)  harmfulInsect[i] = Rnd.Next(1, 75);  }  }  /// <summary> /// 显示种群中个体对环境的适应能力,还有所有个体对环境的适应能力之和。  /// </summary> public void Show()  {  int sum = 0;  for (int i = 1; i < kMaxFlowers; i++)  {  int fitness = Fitness(i);  sum += fitness;  Console.WriteLine("No." + i + "'s fitness is " + fitness);  }  Console.WriteLine("fitness sum is " + sum);  }  }  }

关于C#中怎么实现一个遗传算法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯