GA遗传算法思路理解
遗传算法Genetic Algorithm
GA算法过程
1、总体思路
2、各个步骤
(1)、编码
(2)、选择
(3)、变异
T3、循环交叉CX
GA算法代码
1、伪代码
Procedure Genetic Algorithm
begin
t = 0 ;
初始化 P(t) ;
计算 P(t) 的适应值 ;
while (不满足停止准则) do begin
t = t+1 ;
从P(t-1)中选择 P(t) ; %selection
重组 P(t) ; % crossover and mutation
end
end