登录
首页 » Windows开发 » 修正后版本 遗传算法是基于达尔文进化论的一种智能优化算法,一种可用于复杂系统优化的具有鲁棒性的搜索算法,适用于解决传统方法难以解决的复杂的、非线性问题,可广...

修正后版本 遗传算法是基于达尔文进化论的一种智能优化算法,一种可用于复杂系统优化的具有鲁棒性的搜索算法,适用于解决传统方法难以解决的复杂的、非线性问题,可广...

于 2023-06-10 发布 文件大小:8.68 kB
0 106
下载积分: 2 下载次数: 1

代码说明:

修正后版本 遗传算法是基于达尔文进化论的一种智能优化算法,一种可用于复杂系统优化的具有鲁棒性的搜索算法,适用于解决传统方法难以解决的复杂的、非线性问题,可广泛应用于组合优化、离散优化、工程优化等领域。旅行商问题是一种NP难的组合优化问题,具有重要的理论研究价值和实际应用背景。然而,传统遗传算法中存在有不足,需要提出新的改进的遗传算法,并应用于旅行商问题的求解。-Amended version of genetic algorithm based on Darwin" s theory of evolution is an intelligent optimization algorithm, a complex system can be used to optimize the robustness of the search algorithm, the application of traditional methods to solve difficult and complex, nonlinear problems, can be widely used in combinatorial optimization, discrete optimization, engineering, optimization and other fields. Traveling Salesman Problem is a NP hard combinatorial optimization problem, has important theoretical value and practical application of research background. However, the traditional genetic algorithm, there is less than the need to introduce new improved genetic algorithm, and applied for solving the traveling salesman problem.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起,形成一个程序,这样用户理解起来,更加直观一点(其实这样做也是为了方便调试,大...
    局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起,形成一个程序,这样用户理解起来,更加直观一点(其实这样做也是为了方便调试,大家可以在本机上测试,自己传文件给自己)。所以,我们在程序中需要使用两个Winsock控件,一个负责监听,一个负责发送,当发送端连接成功以后,便选择一个待发送的文件(可以是任意二进制文件),接着将文件名和文件字节长度发送给接收端,接收端收到这个消息以后,将文件名和文件长度解析出来,然后通知发送端可以开始发送文件;发送端读到这个消息之后,将文件流以字节的形式发送到接收端,接收端收到后,将二进制流回写,保存成文件即可。这里要注意两点,一个是由于Winsock每次最大传输8K的内容,所以需要将文件分解,每次传输固定数目的字节流,这样发送和接收时都可以根据这个数目来判断文件传输的进程,一旦字节流数目等于文件的大小,就需要关闭相应的文件句柄;另一点是由于我只使用一个Winsock控件接收,接收文本时需要注意要将UNICODE转码,解析成可识别的信息。 -LAN file transfer to uniform design and user convenience, we hope it will end service and client together and form a process so that users understand, a more intuitive 1:00 (in fact, do so in order to facilitate debugging, you can test the machine, its own text- items for himself). Therefore, we need procedures in the use of two Winsock Control, a charge of wiretapping, a charge of this, when the transmitter connects successfully, it will be a choice to send the document (can be arbitrary binary files), will then file names and the
    2022-04-14 22:25:12下载
    积分:1
  • JAVA做的国际象棋小游戏的源代码。此程序可用来实现象棋小游戏。...
    JAVA做的国际象棋小游戏的源代码。此程序可用来实现象棋小游戏。-JAVA so small the international chess game of the source code. This procedure can be used to achieve small chess game.
    2022-03-31 07:53:15下载
    积分:1
  • 数字显微镜
    数字显微镜和 ccd 相机,用伺服电机控制变焦、 亮度和位置对象与微控制器使用串行接口 9600 bps,编程使用 delphi 7
    2022-09-16 23:00:04下载
    积分:1
  • C#音乐播放器
    1.自定义写了一个歌曲列表 实现了显示全部歌曲列表的功能 有鼠标移动特效2.自定义歌曲列表里 每页显示5首歌曲 可以进行上页 下页翻页功能 3.支持双击列表歌名播放该歌曲 4.显示所有歌曲数量 当前歌曲页数 总页数 5.即使刷新功能 每次添加歌曲 列表进行刷新6.解决很多歌曲列表的BUG 暂时没有发现还有什么BUG7.增加了软件启动的渐入特效和退出的特效 软件边框加上阴影效果
    2022-06-02 22:46:56下载
    积分:1
  • 2008年10月4日23:17:52
    2008年10月4日23:17:52-October 4, 2008 23:17:52
    2022-07-15 12:58:11下载
    积分:1
  • 一个结合了mfc/winsock/多线程等技术实现的聊天程序,只有聊天功能,但是用于广泛,主要适用了tcp链接,udp打洞技术....
    一个结合了mfc/winsock/多线程等技术实现的聊天程序,只有聊天功能,但是用于广泛,主要适用了tcp链接,udp打洞技术.
    2023-07-09 02:55:03下载
    积分:1
  • 模拟游戏中最基本的追击问题的AI算法。 用户可以控制逃离的物体。考虑移动物体在转向时的加速度变化...
    模拟游戏中最基本的追击问题的AI算法。 用户可以控制逃离的物体。考虑移动物体在转向时的加速度变化-Simulation games in pursuit of the most basic issue of AI algorithms. Users can control object to flee. Consider a moving object at the time of acceleration in the shift change
    2022-06-02 12:20:51下载
    积分:1
  • the realization of a simple calculator, with amendments, float calculation funct...
    简单计算器的实现,具有修改、浮点数计算功能等,用语C语言学习。-the realization of a simple calculator, with amendments, float calculation functions, terminology C language learning.
    2022-07-14 10:13:18下载
    积分:1
  • Some programs for the homework. Enjoy yourself.
    课后题的一些小程序,希望大家好好的享用-Some programs for the homework. Enjoy yourself.
    2022-01-25 14:21:51下载
    积分:1
  • RSA _罗宾
    RSA_Robin-miller algorithm
    2022-03-02 10:51:39下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载