《遺傳算法C語言源代碼(一元函數(shù)和二元函數(shù))》由會(huì)員分享,可在線閱讀,更多相關(guān)《遺傳算法C語言源代碼(一元函數(shù)和二元函數(shù))(15頁珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。
.
C語言遺傳算法代碼
以下為遺傳算法的源代碼,計(jì)算一元代函數(shù)的代碼和二元函數(shù)的代碼以+++++++++++++++++++++++++++++++++++++為分割線分割開來,請(qǐng)自行選擇適合的代碼,使用時(shí)請(qǐng)略看完代碼的注釋,在需要更改的地方更改為自己需要的代碼。
+++++++++++++++++++++++++++++++一元函數(shù)代碼++++++++++++++++++++++++++++
#include
#include
#include
#include
#define POPSIZE 1000
#define maximization 1
#define minimization 2
#define cmax 100
#define cmin 0
#define length1 20
#define chromlength length1 //染色體長(zhǎng)度
//注意,你是求最大值還是求最小值
int functionmode=minimization;
//變量的上下限的修改開始
float min_x1=-2;//變量的下界
float max_x1=-1;//變量的上界
//變量的上下限的修改結(jié)束
int popsize; //種群大小
int maxgeneration; //最大世代數(shù)
double pc; //交叉率
double pm; //變異率
struct individual
{
char chrom[chromlength+1];
double value;
double fitness; //適應(yīng)度
};
int generation; //世代數(shù)
int best_index;
int worst_index;
struct individual bestindividual; //最佳個(gè)體
struct individual worstindividual; //最差個(gè)體
struct individual currentbest;
struct individual population[POPSIZE];
//函數(shù)聲明
void generateinitialpopulation();
void generatenextpopulation();
void evaluatepopulation();
long decodechromosome(char *,int,int);
void calculateobjectvalue();
void calculatefitnessvalue();
void findbestandworstindividual();
void performevolution();
void selectoperator();
void crossoveroperator();
void mutationoperator();
void input();
void outputtextreport();
void generateinitialpopulation( ) //種群初始化
{
int i,j;
for (i=0;i0.0)
{temp=cmin+population[i].value;}
else
{temp=0.0;
}
}
else if (functionmode==minimization)
{
if(population[i].valuebestindividual.fitness){
bestindividual=population[i];
best_index=i;
}
else if (population[i].fitness=currentbest.fitness){
currentbest=bestindividual;
}
}
}
void performevolution() //演示評(píng)價(jià)結(jié)果
{
if (bestindividual.fitness>currentbest.fitness){
currentbest=population[best_index];
}
else{
population[worst_index]=currentbest;
}
}
void selectoperator() //比例選擇算法
{
int i,index;
double p,sum=0.0;
double cfitness[POPSIZE];
struct individual newpopulation[POPSIZE];
for(i=0;icfitness[index])
{
index++;
}
newpopulation[i]=population[index];
}
for(i=0;i
#include
#include
#include
#define POPSIZE 500
#define maximization 1
#define minimization 2
#define cmax 100
#define cmin 0
#define length1 20
#define length2 20
#define chromlength length1+length2 //染色體長(zhǎng)度
//-----------求最大還是最小值
int functionmode=maximization;
//-----------
//-----------變量上下界
float min_x1=0;
float max_x1=3;
float min_x2=1;
float max_x2=5;
//-----------
int popsize; //種群大小
int maxgeneration; //最大世代數(shù)
double pc; //交叉率
double pm; //變異率
struct individual
{
char chrom[chromlength+1];
double value;
double fitness; //適應(yīng)度
};
int generation; //世代數(shù)
int best_index;
int worst_index;
struct individual bestindividual; //最佳個(gè)體
struct individual worstindividual; //最差個(gè)體
struct individual currentbest;
struct individual population[POPSIZE];
//函數(shù)聲明
void generateinitialpopulation();
void generatenextpopulation();
void evaluatepopulation();
long decodechromosome(char *,int,int);
void calculateobjectvalue();
void calculatefitnessvalue();
void findbestandworstindividual();
void performevolution();
void selectoperator();
void crossoveroperator();
void mutationoperator();
void input();
void outputtextreport();
void generateinitialpopulation( ) //種群初始化
{
int i,j;
for (i=0;i0.0)
{temp=cmin+population[i].value;}
else
{temp=0.0;
}
}
else if (functionmode==minimization)
{
if(population[i].valuebestindividual.fitness){
bestindividual=population[i];
best_index=i;
}
else if (population[i].fitness=currentbest.fitness){
currentbest=bestindividual;
}
}
}
void performevolution() //演示評(píng)價(jià)結(jié)果
{
if (bestindividual.fitness>currentbest.fitness){
currentbest=population[best_index];
}
else{
population[worst_index]=currentbest;
}
}
void selectoperator() //比例選擇算法
{
int i,index;
double p,sum=0.0;
double cfitness[POPSIZE];
struct individual newpopulation[POPSIZE];
for(i=0;icfitness[index])
{
index++;
}
newpopulation[i]=population[index];
}
for(i=0;i
下載提示(請(qǐng)認(rèn)真閱讀)
- 1.請(qǐng)仔細(xì)閱讀文檔,確保文檔完整性,對(duì)于不預(yù)覽、不比對(duì)內(nèi)容而直接下載帶來的問題本站不予受理。
- 2.下載的文檔,不會(huì)出現(xiàn)我們的網(wǎng)址水印。
- 3、該文檔所得收入(下載+內(nèi)容+預(yù)覽)歸上傳者、原創(chuàng)作者;如果您是本文檔原作者,請(qǐng)點(diǎn)此認(rèn)領(lǐng)!既往收益都?xì)w您。
文檔包含非法信息?點(diǎn)此舉報(bào)后獲取現(xiàn)金獎(jiǎng)勵(lì)!
下載文檔到電腦,查找使用更方便
10
積分
- 配套講稿:
如PPT文件的首頁顯示word圖標(biāo),表示該P(yáng)PT已包含配套word講稿。雙擊word圖標(biāo)可打開word文檔。
- 特殊限制:
部分文檔作品中含有的國(guó)旗、國(guó)徽等圖片,僅作為作品整體效果示例展示,禁止商用。設(shè)計(jì)者僅對(duì)作品中獨(dú)創(chuàng)性部分享有著作權(quán)。
- 關(guān) 鍵 詞:
-
遺傳
算法
語言
源代碼
一元函數(shù)
二元
函數(shù)
- 溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
裝配圖網(wǎng)所有資源均是用戶自行上傳分享,僅供網(wǎng)友學(xué)習(xí)交流,未經(jīng)上傳用戶書面授權(quán),請(qǐng)勿作他用。
鏈接地址:http://www.3dchina-expo.com/p-12939708.html