摘要: Your submission should contain exactly one file: main.cpp. You do not need to submit a design. Your program takes one line as input. The input line co 阅读全文
posted @ 2021-08-19 09:51 柠檬雨 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 仅供学习使用,复制粘贴需谨慎。 仅供学习使用,复制粘贴需谨慎。 仅供学习使用,复制粘贴需谨慎。 #include <iostream> #include <sstream> using namespace std; class AVLNode { public: int key; AVLNode * 阅读全文
posted @ 2021-09-16 10:00 柠檬雨 阅读(65) 评论(0) 推荐(0) 编辑
摘要: Resource: Introduction to Evolutionary Computing, A.E.Eliben Outline 1. Recombination 1.1 Basic recombination two parents --> one child There are two 阅读全文
posted @ 2016-10-16 13:02 柠檬雨 阅读(247) 评论(0) 推荐(0) 编辑
摘要: resource: Evolutionary computing, A.E.Eiben Outline 1. What is Evolution Strategies (ES) Evolution strategies(ES) is another member of the evolutionar 阅读全文
posted @ 2016-08-06 13:20 柠檬雨 阅读(770) 评论(0) 推荐(0) 编辑
摘要: Resource:《Introduction to Evolutionary Computing》 1. What is an evolutionary algorithm? There are many different variants of evolutionary algorithms. 阅读全文
posted @ 2016-07-22 18:39 柠檬雨 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 承接上一章,接着写Genetic Algorithm。 本章主要写排列表达(permutation representations) 开始先引一个具体的例子来进行表述 Outline 1. 问题描述 旅行商问题。给定n个城市,旅行商需要拜访所有城市后回到原点。要求每个城市只能拜访一次,问题的最终目标 阅读全文
posted @ 2016-07-17 22:36 柠檬雨 阅读(1327) 评论(0) 推荐(0) 编辑
摘要: 本篇博文讲述基因算法(Genetic Algorithm),基因算法是最著名的进化算法。 内容依然来自博主的听课记录和教授的PPT。 Outline 1. 简单基因算法(Simple Genetic Algorithm) Holland's早期的基因算法被认为是“简单的基因算法”或是“权威的基因算法 阅读全文
posted @ 2016-07-13 03:18 柠檬雨 阅读(1367) 评论(0) 推荐(2) 编辑
摘要: Outline 1. 什么是进化算法 遗传算法(GA)是模拟生物进化过程的计算模型,是自然遗传学与计算机科学相互结合的新的计算方法。 <图片来源于,Pro. Frank Neumann, The University of Adelaide> 2. 能够解决什么样的问题 我们主要面对的三个问题类型: 阅读全文
posted @ 2016-07-08 17:19 柠檬雨 阅读(986) 评论(0) 推荐(1) 编辑