《遺傳算法C語言源代碼(一元函數(shù)和二元函數(shù))》由會員分享,可在線閱讀,更多相關《遺傳算法C語言源代碼(一元函數(shù)和二元函數(shù))(15頁珍藏版)》請在裝配圖網(wǎng)上搜索。
.
C語言遺傳算法代碼
以下為遺傳算法的源代碼,計算一元代函數(shù)的代碼和二元函數(shù)的代碼以+++++++++++++++++++++++++++++++++++++為分割線分割開來,請自行選擇適合的代碼,使用時請略看完代碼的注釋,在需要更改的地方更改為自己需要的代碼。
+++++++++++++++++++++++++++++++一元函數(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 //染色體長度
//注意,你是求最大值還是求最小值
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; //適應度
};
int generation; //世代數(shù)
int best_index;
int worst_index;
struct individual bestindividual; //最佳個體
struct individual worstindividual; //最差個體
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() //演示評價結(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 //染色體長度
//-----------求最大還是最小值
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; //適應度
};
int generation; //世代數(shù)
int best_index;
int worst_index;
struct individual bestindividual; //最佳個體
struct individual worstindividual; //最差個體
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() //演示評價結(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
下載提示(請認真閱讀)
- 1.請仔細閱讀文檔,確保文檔完整性,對于不預覽、不比對內(nèi)容而直接下載帶來的問題本站不予受理。
- 2.下載的文檔,不會出現(xiàn)我們的網(wǎng)址水印。
- 3、該文檔所得收入(下載+內(nèi)容+預覽)歸上傳者、原創(chuàng)作者;如果您是本文檔原作者,請點此認領!既往收益都歸您。
文檔包含非法信息?點此舉報后獲取現(xiàn)金獎勵!
下載文檔到電腦,查找使用更方便
10
積分
- 配套講稿:
如PPT文件的首頁顯示word圖標,表示該PPT已包含配套word講稿。雙擊word圖標可打開word文檔。
- 特殊限制:
部分文檔作品中含有的國旗、國徽等圖片,僅作為作品整體效果示例展示,禁止商用。設計者僅對作品中獨創(chuàng)性部分享有著作權。
- 關 鍵 詞:
-
遺傳
算法
語言
源代碼
一元函數(shù)
二元
函數(shù)
- 溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
裝配圖網(wǎng)所有資源均是用戶自行上傳分享,僅供網(wǎng)友學習交流,未經(jīng)上傳用戶書面授權,請勿作他用。
鏈接地址:http://kudomayuko.com/p-12939708.html