回溯法解決TSP問題

#include<iostream> #define MAXSUM 100 #define INF 65535 using namespace std; class TSP{ //TSP類 public: int bestv; //最優解即最短路徑 int tempv; //當前路徑長度 int node; //節點個數 int edge; //無向
相關文章
相關標籤/搜索