程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 巧妙的進行VC++6.0代碼編制

巧妙的進行VC++6.0代碼編制

編輯:C++入門知識

下面詳細說明介紹VC++6.0代碼的編制問題,對原來寫過的代碼做了一點修改,些內容都是一些門戶網站和技術論壇找到的,中間可能有不少錯誤是我沒有挑出的,歡迎大家指正。

VC++6.0代碼如下:

  1. public:  
  2.  
  3.  
  4.  void addcity(int city);  
  5.  int tabu[iCityCount];  
  6.  void Clear();  
  7.  void UpdateResult();  
  8.  double m_dLength;  
  9.  double m_dShortest;  
  10.  void move();  
  11.  ant();  
  12.  void move2last();  
  13.  
  14.  
  15. };  
  16. void ant::move2last()  
  17. {  
  18.  
  19.  
  20.  int i;  
  21.  for(i=0;i《iCityCount;i++)  
  22.  
  23.   if (AllowedCity[i]==1)  
  24.   {  
  25.    addcity(i);  
  26.    break;  
  27.   }  
  28.  
  29.  
  30. }  
  31.  
  32.  
  33. void ant::Clear()  
  34. {  
  35.  m_dLength=0;  
  36.  int i;  
  37.  for(i=0; i〈iCityCount;i++)  
  38.  
  39.   prob[i]=0;  
  40.   AllowedCity[i]=1;  
  41.  }  
  42.  i=tabu[iCityCount-1];  
  43.  m_iCityCount=0;  
  44.  addcity(i);  
  45. }  
  46. ant::ant()  
  47. {  
  48.  m_dLength=m_dShortest=0;  
  49.  m_iCityCount=0;  
  50.  int i;  
  51.  for(i=0;i〈iCityCount;i++)  
  52.  
  53.   AllowedCity[i]=1;  
  54.   prob[i]=0;  
  55.  }  
  56. }  
  57. void ant::addcity(int city)  
  58. {  
  59.  //add city to tabu;  
  60.  tabu[m_iCityCount]=city;  
  61.  m_iCityCount++;  
  62.  AllowedCity[city]=0;  
  63. }  
  64. int ant::ChooseNextCity()  
  65. {  
  66.  //Update the probability of path selection  
  67.  //select a path from tabu[m_iCityCount-1] to next  
  68.  
  69.  
  70.  int i;  
  71.  int j=10000;  
  72.  double temp=0;  
  73.  int curCity=tabu[m_iCityCount-1];  
  74.  for (i=0;i〈iCityCount;i++)  
  75.  
  76.   if((AllowedCity[i]==1))   
  77.   {  
  78.    temp+=pow((1.0/Map.distance[curCity][i]),beta)*pow((Map.m_dTrial[curCity][i]),alpha);  
  79.   }  
  80.  } 

以上就是VC++6.0代碼的舉例說明,可以修改循環次數和其他參數。以得到更好的解。使用TSP數據的時候,將前面的一些字符串信息刪除,只留下坐標數據。

  1. 如何正確編寫C++項目開發編寫項目計劃書
  2. 對C++庫函數進行學習探索總結筆記
  3. 深度演示C++語言的種種高安全性
  4. 詳細介紹如何准確無誤的編寫C++語言
  5. 深度演示C++語言的種種高安全性

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved