旅行商问题 Resources

Showing items tagged with "旅行商问题"

One of the artificial neural network experiments that implements Hopfield network to solve the Traveling Salesman Problem. The package includes complete documentation covering algorithm theory, problem formulation, experimental results, and analysis, along with source code implementation featuring energy function minimization and convergence validation.

MATLAB 246 views Tagged

Solving the Traveling Salesman Problem (TSP) using genetic algorithms addresses one of the most famous challenges in mathematical optimization. The problem involves a salesman who must visit n cities exactly once and return to the starting city, aiming to minimize the total travel distance. This implementation utilizes evolutionary computation principles, including chromosome encoding of city sequences, fitness evaluation based on path length, and genetic operators like crossover and mutation to iteratively improve solutions.

MATLAB 222 views Tagged