TSP_遗传算法求解
摘要:
head.h#define N 10class Generation{public: int state[4][N+1];//染色体---种群规模为4,有10个城市 float loadlength[4];//染色体的路径长度 float Fitness[4];//适应度 float SPro[4];//选择概率 float AcPro[4];//累积概率 int ChoiceNum[4];//选择次数 Generation() { int i; for(i=0;i<4;i++) for(in... 阅读全文
posted @ 2012-10-16 19:34 IThinktan 阅读(328) 评论(0) 推荐(0) 编辑