资源简介
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 :
- 上一篇:funcode桌球代码完整版 基于C语言
- 下一篇:funcode拼图
评论
共有 条评论