登录
首页 » 算法 » 开发环境:Visual C++ .net2003 功能:利用禁忌搜索思想求解TSP问题。...

开发环境:Visual C++ .net2003 功能:利用禁忌搜索思想求解TSP问题。...

于 2023-03-12 发布 文件大小:27.28 kB
0 57
下载积分: 2 下载次数: 1

代码说明:

开发环境:Visual C++ .net2003 功能:利用禁忌搜索思想求解TSP问题。-Development Environment: Visual C++. Net2003 functions: thinking of the use of tabu search for solving TSP problems.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 数值计中追赶的C++实现,用类实现。
    数值计算中追赶法的C++实现算法,用类实现。-numerical calculation method to catch up with the algorithm in C, Class Implementation.
    2022-01-25 20:24:36下载
    积分:1
  • In this note we make a critical comparison of some matlab programs for the digit...
    详细表述了分数阶傅立叶变换的离散实现,将现有的算法进行比较。-In this note we make a critical comparison of some matlab programs for the digital computation of the fractional Fourier transform that are freely available and we describe our own implementation that lters the best out of the existing ones. Two types of transforms are considered: First the fast approximate fractional Fourier transform algorithm for which two algorithms are available. The method is described in H.M. Ozaktas, M.A. Kutay, and G. Bozdagi. Digital computation of the fractional Fourier transform. IEEE Trans. Signal Process., 44:2141{2150, 1996. There are two implementations: one is written by A.M. Kutay the other is part of package written by J. O Neill. Secondly the discrete fractional Fourier transform algorithm described in the master thesis C . Candan. The discrete fractional Fourier transform, Bilkent Univ., 1998 and an algorithm described by S.C. Pei, M.H. Yeh, and C.C Tseng: Digital fractional Fourier transform base
    2022-02-09 21:16:41下载
    积分:1
  • 二维码解码器程序源码
    QRcode二维码解码器程序源码本源码实现可以在vc中使用的1D/2D编码解码器。条形码的应用已经非常普遍,几乎所有超市里面的商品上面都印有条形码;二维码也开始应用到很多场合,如火车票有二维码识别、网易的首页有二维码图标,用户只需要用手机扫描一下就可以看到手机版网易的网址,免去了输入长串字符的麻烦。条形码的标准:条形码的标准有ENA条形码、UPC条形码、二五条形码、交叉二五条形码、库德巴条形码、三九条形码和128条形码等.
    2022-03-19 11:29:10下载
    积分:1
  • 哥德巴赫猜想:哥德巴赫(哥德巴赫)曾提出这样一个猜想:2000以内…
    Goldbach s conjecture: Goldbach(哥德巴赫)曾经提出了一个这样的猜想: 对于2000 以内的正偶数都能够分解为两个素数之和。 要求: 该题是一个猜想,我们不去证明它,而是通过编程序来验证 该猜想是否正确。 输入: 用户从键盘任意输入一个自然数。 输出: 给出满足猜想的两个自然数。-Goldbach conjecture : Goldbach (Goldbach) had raised such a guess : 2000 within the can is even divided into two prime numbers and. Requirements : The title is a guess, we do not prove it, but through programmed to verify the guess is correct. Input : arbitrary user input from the keyboard to a natural number. Output : meet guess is the natural number two.
    2023-05-19 07:45:03下载
    积分:1
  • 输入小孩总数n,从第k个小孩开始,循环的步长m。输出:最先输出的是第一个胜利者,其次为第二个,最后为第N个胜利者。...
    输入小孩总数n,从第k个小孩开始,循环的步长m。输出:最先输出的是第一个胜利者,其次为第二个,最后为第N个胜利者。-Enter the total number of children n, from the first k-child start the cycle of steps m. Output: The first output is the first winner, followed by the second, and finally for the first N winner.
    2022-03-31 03:48:50下载
    积分:1
  • 一、前言 24点游戏是一个常见游戏,出题者给出4个整数,要求答题者在指定时间内给出一个四则运的表达式,恰好用上这这个整数各一次,计结果为24,超出时间为...
    一、前言 24点游戏是一个常见游戏,出题者给出4个整数,要求答题者在指定时间内给出一个四则运算的表达式,恰好用上这这个整数各一次,计算结果为24,超出时间为输。 二、分析 用计算机来算这个题,搜索速度当然有很大优势,我编程喜欢考虑通用一点,不限制输入数量和结果数,甚至不限制运算符数量。这样组合数就很大,如果输入数比较多,则搜索时间会非常长。 我用两个方法来提高搜索速度:一、是大家都能考虑到的重复搜索问题,比如1,2,3和2,3,1所有的组合情况是相同的,我只搜索使用递增序的数组,则可以降低一个组合数的数量级别;二、使用动态规划中的备忘录方法,比如你计算出2和3所有可能的计算结果,则他们与4结合的时候,要用到,与1结合的时候,也要用到,使用备忘录,可以只计算一次,大大降低运算复杂度。 三、设计 整体设计:分别设计4个类:游戏、表达式、运算、分数,各司其责,结构清晰,易于扩展。 -First, the preamble 24-point game is a common game, give the title are four integer requiring answer within a specified period of time in a four calculations give the expression, just use that the integral of the time, results for the 24, beyond the time to lose. Second, analysis Use computers to count the title, the search speed of course, there is a great advantage, I enjoy taking generic programming that does not restrict the importation of the volume and the number of results, and even limiting the number of operators. So on a large number of combinations, if you
    2022-04-21 18:17:05下载
    积分:1
  • 关于C语言结构体的应用
    关于C语言结构体的应用-on the C language structure of the application
    2022-10-18 04:45:03下载
    积分:1
  • 从国外大学上下的Levenberg程序
    从国外大学上下的Levenberg算法程序-From foreign universities Levenberg algorithm program from top to bottom
    2022-08-25 16:49:18下载
    积分:1
  • 利用遗传进行阈值分割
    本算法利用遗传算法根据otsu原则迭代计算得到图像的最优分割阈值。 使用了opencv库。
    2022-02-03 09:05:06下载
    积分:1
  • 快速gSpan
    应用背景gSpan是图形数据库频繁图挖掘软件包。 ;给定一个集合的图形和最小支持度阈值,gSpan能够发现所有的子图的频率高于阈值。 ;的gSpan的细节可以在下面的文件中找到,基于图结构的gSpan:模式挖掘, ;的 ;X燕和J.汉族。 ;触发。2002基于数据挖掘的国际会议(ICDM 102)。 ;  [PDF];扩展版,UIUC的技术报告,uiucdcs-r-2002-2296  ;[PDF]关闭图形系统:挖掘频繁闭图模式, ;用X燕和J.汉族。 ;触发。2003知识发现与数据挖掘国际会议(SIGKDD 2003) ;。【PDF】使用协议下载仅用于内部研究的目的,再分配和商业使用是不允许的;使用下载的软件仅限于性能测试。对于其他利益,联系作者。关键技术gSpan是图形数据库频繁图挖掘软件包。 ;给定一个集合的图形和最小支持度阈值,gSpan能够发现所有的子图的频率高于阈值。并;
    2022-02-25 19:11:00下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 42今日下载