• 大小: 598B
    文件类型: .cpp
    金币: 2
    下载: 1 次
    发布日期: 2021-06-18
  • 语言: C/C++
  • 标签: Tag  

资源简介

c++ 最大最小蚁群算法的代码,帮助你学会编写简单的代码

资源截图

代码片段和文件信息

// MMAS.cpp : 定义控制台应用程序的入口点。
//

#include “stdafx.h“
#include “Tsp.h“

int main()
{
//初始化随机种子
time_t tm;
time(&tm);
unsigned int nSeed=(unsigned int)tm;
srand(nSeed);

//开始搜索
CTsp tsp;

tsp.InitData();
tsp.Search();

//输出结果
printf(“\nThe best tour is :

评论

共有 条评论