-
Cplex优化程序 Tsp
旅行商问题(TSP)询问以下问题:由于城市和每对城市之间的距离的名单,什么是访问每个城市恰好一次,并返回到出发城市的最短路线?它是组合优化的NP难问题,在运营研究和理论计算机科学的重要。
- 2022-07-27 17:45:24下载
- 积分:1
-
Easy vc++ entry, advanced with the application of Part V of the source code, are...
深入浅出vc++入门,进阶与应用实例的源代码第五部分,对于初学者有很大帮助-Easy vc++ entry, advanced with the application of Part V of the source code, are very helpful for beginners
- 2022-09-15 15:35:03下载
- 积分:1
-
1.将各个项目子目录拷贝到硬盘上,然后可以用Visual Basic打开程序。 2.在每个项目子目录里面的sql目录里,将后缀.sql的文件打开后,拷贝到SQL...
1.将各个项目子目录拷贝到硬盘上,然后可以用Visual Basic打开程序。 2.在每个项目子目录里面的sql目录里,将后缀.sql的文件打开后,拷贝到SQL Server 2000的查询分析器里。然后执行将产生需要的数据库结构。-1. All projects will subdirectory copy to the hard drive, which can then be opened in Visual Basic procedures. 2. Each item inside the subdirectory sql directory of extensions. Sql open the document, copies of SQL Server 2000 inquiries analyzer Lane. Then needs arising from the implementation of the database structure.
- 2022-01-26 20:04:58下载
- 积分:1
-
一个可以美化滚动条的代码
一个可以美化滚动条的代码-a beauty of the rolling code
- 2023-03-11 18:50:04下载
- 积分:1
-
大学图书馆系统
大学图书馆系统
- 2022-04-18 06:52:45下载
- 积分:1
-
这里讨论TIA自动化等相关话题(21KB)
这里讨论TIA自动化等相关话题(21KB)-here to discuss topics related to automation (21KB)
- 2023-06-22 03:55:03下载
- 积分:1
-
VFP公历农历转换程序,小例子,大家看看,可能会有帮助,好了
VFP公历农历转换程序,小例子,大家看看,可能会有帮助,好了-VFP Lunar calendar conversion, small examples, we see that may be helpful, a good
- 2022-10-05 22:40:03下载
- 积分:1
-
学习离散数学时在老师地要求下编写的个小程序,离散数学――真值表...
学习离散数学时在老师地要求下编写的个小程序,离散数学――真值表-discrete mathematics learning at the request of the teacher to prepare procedures for the small, discrete mathematics-- truth table
- 2022-06-27 03:15:25下载
- 积分:1
-
LBG Vector Quantizer Design Program
LBG Vector Quantizer Design Program
- 2022-01-25 23:08:11下载
- 积分:1
-
内存修改
#ifndef _SEARCH_THREAD_H_
#define _SEARCH_THREAD_H_
#define PROCESS_SIZE 1000 // 进程条的最大值
#define THREAD_NUM 1 // 搜索内存线程个数
#define WM_FIND_MEMORY (WM_USER + 1) // 找到搜索数值
#define WM_FIND_PROGRESS (WM_USER + 2) // 搜索进度
#define WM_SEARCH_FINISH (WM_USER + 3) // 搜索线程完成
#define SEARCH_STRING_MAX_LENGTH 255 // 搜索字符串的最大长度
class CModifyMemoryDlg;
// 搜索线程函数
DWORD WINAPI SearchMemory(LPVOID lpParameter);
// 精确搜索
void EquSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi);
// 大于搜索
void GreaterSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi);
// 小于搜索
void
- 2022-06-18 16:10:54下载
- 积分:1