Skip to content
This repository has been archived by the owner on Aug 15, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (15 loc) · 707 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 707 Bytes

部分关于车辆路径规划问题(Vehicle Routing Problem, VRP)的算法

C++

  • 用于解决TSP问题的模拟退火算法

JAVA

  • 用于解决TSP问题的粒子群算法

Python

  • 用于解决TSP问题的蚁群算法
  • 用于解决TSP问题的遗传算法
  • 用于解决TSP问题的粒子群算法
  • 用于解决VRP问题的基于CFRS(Cluster First Route Second)规则的模拟退火算法
  • 用于解决VRP问题的基于RFCS(Route First Cluster Second)规则的模拟退火算法
  • 用于解决TSP问题的模拟退火算法
  • 用于解决TSP问题的禁忌搜索算法
  • 用于解决TSP问题的变邻域搜索算法
  • 用于解决背包问题的变领域搜索算法