CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - Traveling Salesman Problem with c
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - Traveling Salesman Problem with c - List
[
Windows Develop
]
TSPforMATLAB
DL : 0
这是一个c++与matlab进行混合编程利用遗传算法实现tsp的源程序,较好的解决了旅行商的问题-c Matlab mixed with the use of genetic programming algorithm tsp of the source, the better to solve the traveling salesman problem
Update
: 2008-10-13
Size
: 11.03kb
Publisher
:
yaoxingyu
[
Other
]
hldan
DL : 0
模拟退火算法求解货郎担问题(用C#实现)-simulated annealing algorithm for traveling salesman problem (with C#)
Update
: 2008-10-13
Size
: 65.69kb
Publisher
:
yyy
[
Windows Develop
]
TSPforMATLAB
DL : 0
这是一个c++与matlab进行混合编程利用遗传算法实现tsp的源程序,较好的解决了旅行商的问题-c Matlab mixed with the use of genetic programming algorithm tsp of the source, the better to solve the traveling salesman problem
Update
: 2025-02-17
Size
: 554kb
Publisher
:
yaoxingyu
[
Other
]
hldan
DL : 0
模拟退火算法求解货郎担问题(用C#实现)-simulated annealing algorithm for traveling salesman problem (with C#)
Update
: 2025-02-17
Size
: 65kb
Publisher
:
yyy
[
AI-NN-PR
]
TSP(C++)
DL : 0
遗传算法解决TSP问题C++源码,内有详细中文注释及城市距离矩阵生成工具[VC++]-genetic algorithm to solve TSP C source code, have detailed notes and urban Chinese distance matrix generation tools [VC]
Update
: 2025-02-17
Size
: 14kb
Publisher
:
才华
[
AI-NN-PR
]
TS-TSP
DL : 0
使用禁忌搜索算法求解TSP(旅行商问题)的JAVA源程序-The use of tabu search algorithm for solving TSP (Traveling Salesman Problem) the JAVA source code
Update
: 2025-02-17
Size
: 3kb
Publisher
:
ann
[
CSharp
]
TSP
DL : 0
用c#实现tsp问题 即经典的旅行商问题 典型的组合优化问题-With c# Achieve tsp issues classic traveling salesman problem that is typical of combinatorial optimization problems
Update
: 2025-02-17
Size
: 8kb
Publisher
:
刘年
[
AI-NN-PR
]
Astar_TSP
DL : 0
用A星算法解决旅行商(货郎担)问题,附设计报告和测试用例-A Star algorithm used to solve TSP (traveling salesman) problems, with the design of reports and test cases
Update
: 2025-02-17
Size
: 59kb
Publisher
:
杨猛
[
Other
]
TspSA
DL : 0
首先介绍模拟退火算法,然后编写伪程序,结合Visual C++开发工具求解著名的旅行商问题TSP-Simulated annealing algorithm first introduced, and then the preparation of pseudo-process, combined with Visual C++ development tools for solving the famous Traveling Salesman Problem TSP
Update
: 2025-02-17
Size
: 906kb
Publisher
:
liuzhiyong
[
Windows Develop
]
fenzhiTravel
DL : 0
用C++实现用分支界限法解决旅行商问题,有可视化界面-Using C++ to achieve with a branch to solve traveling salesman problem limits of law, the visualization interface
Update
: 2025-02-17
Size
: 372kb
Publisher
:
pf
[
Compress-Decompress algrithms
]
maugis
DL : 0
模拟退火和对称 *欧几里德旅行商问题。 * *为基础的解决办法的本地搜索启发式 *非过境道路和近邻 -/* * Simulated annealing and the Symetric * Euclidian Traveling Salesman Problem. * * Solution based on local search heuristics for * non-crossing paths and nearest neighbors * * Storage Requirements: n^2+4n ints * * Problem: given the coordinates of n cities in the plane, find a * permutation pi_1, pi_2, ..., pi_n of 1, 2, ..., n that minimizes * sum for 1<=i<n D(pi_i,pi_i+1), where D(i,j) is the euclidian * distance between cities i and j * * Note: with n cities, there is (n-1)!/2 possible tours. * factorial(10)=3628800 factorial(50)=3E+64 factorial(150)=5.7E+262 * If we could check one tour per clock cycle on a 100 MHZ computer, we * would still need to wait approximately 10^236 times the age of the * universe to explore all tours for 150 cities. * * gcc-O4-o tsp tsp.c-lm tsp | ghostview- * * Usage: tsp [-v] [n=dd] [s=dd] [filename] * -v : verbose * n= : nb of cities (cities generated randomly on E^2
Update
: 2025-02-17
Size
: 84kb
Publisher
:
孙博
[
Documents
]
hamilton
DL : 0
用分支与界法解决旅行商问题,c++源代码。十分快速。-With the branch and bound algorithm to solve traveling salesman problem, c++ source code. Very fast.
Update
: 2025-02-17
Size
: 1kb
Publisher
:
白云飞
[
AI-NN-PR
]
TSP_GA
DL : 0
在c语言中用遗传算法解决旅行商问题的一个简单的程序,含有主程序,数据文件-In c language using genetic algorithms to solve the traveling salesman problem of a simple program, with the main program, data file
Update
: 2025-02-17
Size
: 3kb
Publisher
:
陈建飞
[
AI-NN-PR
]
tsp-ac
DL : 0
用模拟退火算法编写的解决旅行商问题的一个简单程序,所用语言为c语言。-Prepared by simulated annealing algorithm to solve traveling salesman problem with a simple procedure, the use of language c language.
Update
: 2025-02-17
Size
: 2kb
Publisher
:
陈建飞
[
AI-NN-PR
]
ant
DL : 0
用C语言编程的蚁群算法,很好的解决了旅行商的问题。-C language programming with ant colony algorithm, a good solution to the traveling salesman problem.
Update
: 2025-02-17
Size
: 51kb
Publisher
:
chu
[
AI-NN-PR
]
hamilton
DL : 0
分支定界法解旅行商问题的简单实现,用C++代码,效率经过优化后可以在1s内解规模为25左右的旅行商问题。附带了测试文件的自动生成工具。-Branch and bound method for solving the traveling salesman problem is simple to achieve, with the C++ code, the efficiency can be optimized through the solution 1s about the size of 25 traveling salesman problem. Comes with tools for automatic generation of test files.
Update
: 2025-02-17
Size
: 839kb
Publisher
:
sunlight
[
AI-NN-PR
]
neuro_src_CSharp
DL : 0
一个神经网络计算的库,实现几个通用神经网络体系和训练方法,自识别图,弹性网络等.like Back Propagation, Kohonen Self-Organizing Map, Elastic Network, Delta Rule Learning, and Perceptron Learning.-In this article, a C# library for neural network computations is described. The library implements several popular neural network architectures and their training algorithms, like Back Propagation, Kohonen Self-Organizing Map, Elastic Network, Delta Rule Learning, and Perceptron Learning. The usage of the library is demonstrated on several samples: • Classification (one-layer neural network trained with perceptron learning algorithms) • Approximation (multi-layer neural network trained with back propagation learning algorithm) • Time Series Prediction (multi-layer neural network trained with back propagation learning algorithm) • Color Clusterization (Kohonen Self-Organizing Map) • Traveling Salesman Problem (Elastic Network).
Update
: 2025-02-17
Size
: 237kb
Publisher
:
calford
[
Windows Develop
]
MyGADlgToTSP_V1.4Release
DL : 0
用c++语言程序来解决旅行商问题,可以参考借鉴下-With c++ language program to solve the traveling salesman problem, you can reference from under
Update
: 2025-02-17
Size
: 112kb
Publisher
:
樊樊
[
Algorithm
]
c
DL : 0
c语言用蚂蚁算法解决TSP旅行商问题,带详细注释!供学习蚂蚁算法用! -c language ant algorithm to solve the traveling salesman problem TSP, with detailed notes! Ant algorithm to use for learning!
Update
: 2025-02-17
Size
: 2kb
Publisher
:
Qwer
[
VC/MFC
]
paper1
DL : 0
A Survey on Hybridizing Genetic Algorithm with Dynamic Programming for Solving the Traveling Salesman Problem
Update
: 2025-02-17
Size
: 443kb
Publisher
:
Mabro
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.