旅行售貨商問題 -- 回溯法

/*旅行售貨員問題回溯法*/ #include<stdio.h> #define N 4 int cc,//當前路徑費用 bestc;//當前最優解費用 int a[N+1][N+1];//鄰接矩陣,存放圖的信息 int bestx[N+1];//當前最優解 int x[N+1];//當前解 void inputAjac() { int i,j;
相關文章
相關標籤/搜索