摘要: //=====================================================================//基本蚁群算法源代码//使用的城市数据是eil51.tsp//=====================================================================// AO.cpp : 定义控制台应用程序的入口点。#pragma once#include "stdafx.h"#include #include #include //================================ 阅读全文
posted @ 2013-08-25 20:19 SKY_VIEW 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 一、c++允许定义指向类成员的指针,包括类函数成员指针和类数据成员指针格式如下:class A{public: void func(){printf("This is a function!\n");} int data;};void (A::*p)()=&A::func;//带有取址符号,普通... 阅读全文
posted @ 2013-08-25 15:09 SKY_VIEW 阅读(882) 评论(0) 推荐(0) 编辑