青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

posts - 12,  comments - 54,  trackbacks - 0
基因交叉,或者基因重組,就是把兩個父體部分結構加以替換,生成新的個體的操作,習慣上對實數編碼的操作叫做重組(Recombination),對二進制編碼的操作稱為交叉(crossover)。

比較常用的一些算法介紹如下:
1. 重組算法(Recombination)
 實值重組產生子個體一般是用下邊這個算法:
 子個體=父個體1 + a × ( 父個體2 - 父個體1 )
這里a是一個比例因子,可以由[ -d, 1+d] 上邊服從均勻分布的隨機數產生。
不同的重組算法,a的取值是不同的,一般來講,d=0.25是一個比較好的選擇。
下邊一段c++代碼片斷,實現一個中值重組算法,其中d取值為0。

 1 /*
 2 Gene Crossover Algorithm
 3 Linear Recombination Xover Algorithm
 4 
 5 A crossover operator that linearly combines two parent
 6 chromosome vectors to produce two new offspring a
 7 ccording to the following equations:
 8 
 9 Offspring1 = a * Parent1 + (1- a) * Parent2
10 Offspring2 = (1 – a) * Parent1 + a * Parent2
11 
12 
13 where a is a random weighting factor (chosen before each
14 crossover operation).
15 
16 Consider the following 2 parents (each consisting of 4
17 float genes) which have been selected for crossover:
18 
19 Parent 1: (0.3)(1.4)(0.2)(7.4)
20 Parent 2: (0.5)(4.5)(0.1)(5.6)
21 
22 If a = 0.7, the following two offspring would be produced:
23 
24 Offspring1: (0.36)(2.33)(0.17)(6.86)
25 Offspring2: (0.402)(2.981)(0.149)(6.842)
26 */
27 template< class GENE >
28 class Intermediate_Recombination_Gene_Crossover_Algorithm
29 {
30     public:
31             void operator()( GENE& g1, GENE& g2 )const
32             {
33                 assert( g1.Upper == g2.Upper );
34                 assert( g1.Lower == g2.Lower );
35 
36                 const long double Ran = ran();
37                 const long double sum = g1.Value + g2.Value;
38 
39                 if ( sum < g1.Upper )
40                 {
41                     g1.Value = Ran * sum;
42                     g2.Value = sum - g1.Value;
43                 }
44                 else
45                 {
46                     const long double sub = 2.0L * g1.Upper - sum;
47                     g1.Value = g1.Upper - sub * Ran;
48                     g2.Value = g1.Upper - sub + sub * Ran;
49                 }
50             }
51 };

2.  交叉算法
如上文遺傳算法中的數據結構中所講,基因的二進制編碼有直接編碼(Normal)和Gray編碼之分,以下所說算法,均適用于這兩種算法。

假設基因的二進制編碼長度為N,那么這些編碼之間有N-1個空隙,可供交叉使用。
二進制交叉算法就是
如何選擇空隙,選擇多少個空隙。
以下將各走極端的選擇一個空隙交叉的單點交叉算法,和選擇N-1個空隙進行交叉的洗牌交叉算法大致說一下。

(1) 單點交叉
在二進制編碼中,隨機選擇一個點,以這個點為界限,相互交換變量。

父個體1      011111110000000000
父個體2      000000001111111111
如粗體前邊位置為所選擇的交叉點,那么生成的子個體為:
子個體1      011111111111111111
子個體2      000000000000000000
以下為c++實現,采用Gray編碼,直接編碼的類似。
 1 /*
 2 Gene crossover algorithm
 3 One Point Crossover using Gray binary encoding
 4 
 5 A crossover operator that randomly selects a crossover point
 6 within a chromosome then interchanges the two parent chromosomes
 7 at this point to produce two new offspring.
 8 
 9 Consider the following 2 parents which have been selected for
10 crossover. The “|” symbol indicates the randomly chosen
11 crossover point.
12 
13 Parent 1: 11001|010
14 Parent 2: 00100|111
15 
16 After interchanging the parent chromosomes at the crossover
17 point, the following offspring are produced:
18 
19 Offspring1: 11001|111
20 Offspring2: 00100|010
21 */
22 template< class GENE >
23 class Gray_Binary_Single_Point_Xover_Gene_Crossover_Algorithm
24 {
25     public:
26             void operator()( GENE& g1, GENE& g2 )const
27             {
28                 encoding( g1 );
29                 encoding( g2 );
30                 assert( g1.Binary_Array.size() == g2.Binary_Array.size() );
31 
32                 normal2gray( g1 );
33                 normal2gray( g2 );
34 
35                 const unsigned int Pos = static_cast<unsigned int>
36                                 ( g1.Binary_Array.size() * ran() );
37 
38                 for ( unsigned int i = 0; i < Pos; ++i )
39                 {
40                     if ( g1.Binary_Array[i] xor g2.Binary_Array[i] )
41                     {
42                         if ( g1.Binary_Array[i] )
43                             {
44                                 g1.Binary_Array[i] = 0;
45                                 g2.Binary_Array[i] = 1;
46                             }
47                             else
48                             {
49                                 g1.Binary_Array[i] = 1;
50                                 g2.Binary_Array[i] = 0;
51                             }
52                     }
53                 }
54 
55                 gray2normal( g1 );
56                 gray2normal( g1 );
57                 decoding( g1 );
58                 decoding( g2 );
59             }
60 };
61 
62 
63 

(2)洗牌交叉
洗牌交叉就是,將一個父基因取一半,再上來自另外一個父基因的一半,構成一個新的子基因。
算法代碼如下:

 1 template< class GENE >
 2 class Gray_Binary_Shuffle_Xover_Gene_Crossover_Algorithm
 3 {
 4     public:
 5             void operator()( GENE& g1, GENE& g2 )const
 6             {
 7                 encoding( g1 );
 8                 encoding( g2 );
 9                 assert( g1.Binary_Array.size() == g2.Binary_Array.size() );
10 
11                 normal2gray( g1 );
12                 normal2gray( g2 );
13 
14                 const unsigned int Size = g1.Binary_Array.size();
15 
16                 for ( unsigned int i = 0; i < Size; ++i )
17                 {
18                     if ( ( i & 1&&
19                          ( g1.Binary_Array[i] xor g2.Binary_Array[i] )
20                         )
21                     {
22                         if ( g1.Binary_Array[i] )
23                             {
24                                 g1.Binary_Array[i] = 0;
25                                 g2.Binary_Array[i] = 1;
26                             }
27                             else
28                             {
29                                 g1.Binary_Array[i] = 1;
30                                 g2.Binary_Array[i] = 0;
31                             }
32                     }
33                 }
34 
35                 gray2normal( g1 );
36                 gray2normal( g1 );
37                 decoding( g1 );
38                 decoding( g2 );
39             }
40 };
41 
42 

3.  另外的一些代碼
(1)群體中的交叉算法
將經過選擇考驗的個體放入一個群體,當放入的個體數量達到要求后,對里邊的個體進行兩兩交叉。

 1 //Population Crossover Algorithm
 2 //1. get the number of Chromosomes in the Population
 3 //2. get the number of Gens in a Chromosome
 4 //3. generate a random number
 5 //4. if the random number is bigger than the probability, skip
 6 //5. if the selected two genes are of the same value, skip
 7 //6. crossover the two genes using the selected Gene crossover algorithm
 8 template< class POPULATION, class GENE_CROSSOVER_ALGORITHM >
 9 class Population_Crossover_Algorithm
10 {
11     public:
12         void operator()( POPULATION& population ) const
13         {
14             //1
15             const unsigned int C_Size = population.Chromosome_Array.size();
16             assert( C_Size > 1 );
17 
18             //2
19             const unsigned int G_Size = population.Chromosome_Array[0].Gene_Array.size();
20 
21             for ( unsigned int i = 0; i < C_Size / 2++i )
22             {
23                 for( unsigned int j = 0; j < G_Size; ++j )
24                 {
25                     //3
26                     const long double Ran = ran();
27                     //4
28                     if ( Ran > population.Crossover_Probability )
29                         continue ;
30                     //5
31                     if ( population.Chromosome_Array[i].Gene_Array[j].Value ==
32                          population.Chromosome_Array[C_Size-i-1].Gene_Array[j].Value
33                         )
34                         continue;
35                     //6
36                     crossover(
37                             population.Chromosome_Array[i].Gene_Array[j],
38                             population.Chromosome_Array[C_Size-i-1].Gene_Array[j],
39                             GENE_CROSSOVER_ALGORITHM()
40                                 );
41                 }
42             }
43         }
44 };




(2) 交叉函數定義
種群的交叉只涉及一個交叉主體,而基因/個體的交叉涉及兩個交叉主體,定義如下:

 1 //Population crossover only
 2 template<class POPULATION, class ALGORITHM>
 3 void crossover( POPULATION& p,          //the Population to perform crossover
 4                 const ALGORITHM& a )    //the Algorithm used for the crossover
 5 {
 6     assert( p.Chromosome_Array.size() > 1 );
 7     a( p );
 8 }
 9 
10 
11 //gene crossover algorithm
12 template<class GENE, class ALGORITHM>
13 static void crossover(  GENE &g1,               //Gene1 to perform crossvoer
14                         GENE &g2,               //Gene2 to perform crossvoer
15                         const ALGORITHM& a )    //the Algorithm employed
16 {
17     a( g1, g2 );
18 }
19 




posted on 2008-06-18 15:56 Wang Feng 閱讀(12131) 評論(1)  編輯 收藏 引用 所屬分類: Numerical C++

FeedBack:
# re: 遺傳算法系列 (3) 交叉算法
2010-02-12 00:32 | hello
請教:“洗牌交叉”如果按該文的代碼,和單點交叉又有何區別呢?
“洗牌交叉”應該在交叉之前在父代中有shuffle運算,交叉后在子代中有unshuffle運算,但不知道是如何進行的,作者如有知曉,不吝賜教,謝謝:)
email: hwei2007@qq.com  回復  更多評論
  

<2025年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

常用鏈接

留言簿(4)

隨筆分類

隨筆檔案

Link List

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国内精品久久久久久久影视蜜臀 | 99精品热视频只有精品10| 久久爱www| 久久久五月婷婷| 久久午夜影视| 欧美韩日一区二区三区| 亚洲精品国产品国语在线app | 欧美在线一二三区| 久久亚洲一区二区三区四区| 欧美激情一区二区三区在线| 国产精品嫩草影院一区二区| 一区精品久久| 一区二区冒白浆视频| 午夜精品美女久久久久av福利| 久久久久国产一区二区三区四区| 蜜桃伊人久久| 夜夜嗨av一区二区三区中文字幕 | 久久亚洲私人国产精品va| 欧美肥婆在线| 亚洲伊人网站| 免费在线看一区| 欧美午夜寂寞影院| 亚洲国产精品一区制服丝袜 | 亚洲国产91色在线| 亚洲无线视频| 欧美久久电影| 在线播放日韩欧美| 亚洲女ⅴideoshd黑人| 欧美第一黄色网| 午夜精品视频一区| 欧美日韩美女| 日韩一区二区精品视频| 免费欧美网站| 久久成人免费日本黄色| 欧美图区在线视频| 亚洲精品社区| 欧美激情精品久久久久久大尺度 | 久久亚洲精品欧美| 亚洲图片在线观看| 国产精品午夜在线观看| 国产精品久久久久av| 亚洲国产视频一区| 巨乳诱惑日韩免费av| 午夜精品影院在线观看| 国产精品成人一区二区艾草| 亚洲黄色在线视频| 久久性色av| 欧美亚洲专区| 国产婷婷一区二区| 欧美一级视频免费在线观看| 一区二区三区四区在线| 欧美日韩一区二区高清| 日韩视频一区二区三区| 欧美激情视频免费观看| 另类图片综合电影| 亚洲福利视频一区| 欧美大胆a视频| 蜜臀va亚洲va欧美va天堂| 亚洲国产一二三| 欧美二区视频| 欧美精品尤物在线| 亚洲视频一区在线| 在线视频中文亚洲| 国产精品欧美久久| 午夜伦欧美伦电影理论片| 亚洲综合视频在线| 国产亚洲人成网站在线观看| 久久久久九九九| 久久综合久久综合九色| 亚洲欧洲免费视频| 亚洲美女毛片| 国产精品毛片va一区二区三区| 亚洲欧美日韩精品| 亚洲欧美综合一区| 极品少妇一区二区三区| 亚洲国产mv| 国产精品第三页| 久久久久久久久岛国免费| 久久久久久一区二区| 亚洲精品小视频| 一级成人国产| 国产综合香蕉五月婷在线| 欧美激情成人在线视频| 欧美日韩一区视频| 久久精品亚洲精品国产欧美kt∨| 久久精品中文字幕免费mv| 亚洲国产三级在线| 亚洲午夜在线观看| 在线日韩中文| 在线亚洲自拍| 一色屋精品亚洲香蕉网站| 亚洲精品一区二区三区蜜桃久| 国产欧美日韩综合一区在线播放| 国产日韩欧美综合一区| 老司机亚洲精品| 欧美视频中文在线看| 久久久亚洲国产天美传媒修理工| 麻豆久久婷婷| 欧美在线看片a免费观看| 欧美不卡福利| 久久精品视频99| 欧美视频四区| 国产日韩av一区二区| 亚洲国产精品久久久久秋霞蜜臀| 日韩一级黄色片| 激情久久中文字幕| 国产精品99久久久久久www| 国产一区二区在线观看免费播放| 亚洲精品永久免费| 在线精品福利| 欧美一区二区在线播放| 亚洲综合色视频| 欧美经典一区二区三区| 久久尤物视频| 国产日韩欧美高清| 亚洲综合欧美日韩| 亚洲欧美网站| 欧美日韩性视频在线| 欧美大片在线看| 一色屋精品亚洲香蕉网站| 亚洲欧美日韩专区| 午夜精品久久久| 欧美日韩一区二区三区在线视频| 欧美成人69| 精品成人国产| 久久激情一区| 久久精品99国产精品| 欧美偷拍另类| av成人福利| 亚洲一区二区少妇| 欧美视频观看一区| 99re国产精品| 中文av字幕一区| 欧美日韩一区二区视频在线 | 亚洲欧美激情四射在线日| 在线一区二区三区四区五区| 欧美成人性生活| 亚洲精品社区| 中文成人激情娱乐网| 欧美日韩亚洲91| 亚洲午夜精品久久久久久浪潮 | 亚洲资源在线观看| 亚洲欧美国产77777| 国产精品视频内| 午夜精品影院在线观看| 午夜国产精品视频免费体验区| 国产精品久久久久久久久搜平片| 亚洲午夜羞羞片| 久久久久久自在自线| 在线观看国产精品网站| 欧美三级小说| 亚洲高清在线观看| 亚洲精品视频中文字幕| 国产精品国产一区二区| 欧美伊久线香蕉线新在线| 久久久精品国产免费观看同学| 国产三区精品| 美女主播精品视频一二三四| 亚洲精品视频一区| 香蕉成人伊视频在线观看| 国产在线精品自拍| 欧美成人xxx| 亚洲免费婷婷| 欧美激情精品久久久久久黑人| 这里只有精品视频在线| 国产日韩欧美综合一区| 久久成人一区| 免费观看久久久4p| 日韩一级在线观看| 国产精品视频免费在线观看| 久久久欧美精品sm网站| 亚洲三级电影在线观看| 久久se精品一区精品二区| 亚洲激情偷拍| 国产精品入口夜色视频大尺度| 久久躁狠狠躁夜夜爽| 亚洲一区二区三区影院| 欧美成人一区二区三区在线观看 | 嫩草影视亚洲| 亚洲欧美日韩精品久久久久| 在线观看视频一区二区| 国产精品毛片一区二区三区| 另类天堂av| 久久se精品一区二区| 99re6这里只有精品视频在线观看| 狂野欧美一区| 午夜精彩国产免费不卡不顿大片| 亚洲精选一区| 亚洲第一精品福利| 国产一区二区0| 国产精品久久久久久久电影| 欧美激情第10页| 老司机一区二区三区| 久久国产精品久久w女人spa| 亚洲午夜高清视频| 99在线热播精品免费99热| 欧美高清在线一区| 欧美不卡视频一区| 国外成人在线视频网站| 国产精品xnxxcom|