手机版

蚁群算法c++代码(2)

发布时间:2021-06-08   来源:未知    
字号:

可以运行,有详细步骤说明

int AllowedCity[iCityCount]; //城市是否选择 1=未走 0=已走

public:

void addcity(int city); //添加城市号

int tabu[iCityCount]; //蚂蚁已走的城市号

void Clear();//重新初始化

void UpdateResult();//更新数据

double m_dLength; //单个蚂蚁走过的路径长度

double m_dShortest; //蚂蚁走过的最短路径长度

void move();//移动到下一个城市

ant();//蚂蚁类的构造函数

void move2last();

};

void ant::move2last()//只剩下一个城市没走过时才调用,直接移动到最后一个城市 {

int i;

for(i=0;i<iCityCount;i++)

if (AllowedCity[i]==1) //1=未走 0=已走

{

addcity(i);

break;

}

}

void ant::Clear()//清空数据,蚂蚁周游完各个城市后,要重新开始周游各个城市时调用。 {

m_dLength=0;

int i;

for(i=0; i<iCityCount;i++)

{

prob[i]=0;

AllowedCity[i]=1;

i=tabu[iCityCount-1]; //用最后一个城市作为出发城市

m_iCityCount=0;

addcity(i);

}

}

ant::ant()//初始化

{

m_dLength=m_dShortest=0;

m_iCityCount=0;

int i;

for(i=0;i<iCityCount;i++) {

蚁群算法c++代码(2).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
×
二维码
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)