程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++數據結構學習之隊列的應用

C++數據結構學習之隊列的應用

編輯:C++入門知識

在學習C++隊列的運用中,我看了兩本書,都是講解隊列應用的,而且都是銀行營業模擬。細比較,這兩本書模擬的銀行營業的方式還是不同的。老式的營業模式,現在的很多地方還是這種營業模式——幾個窗口同時排隊。這種方式其實不太合理,經常會出現先來的還沒有後來的先辦理業務(常常前面一個人磨磨蹭蹭,別的隊越來越短,讓你恨不得把前面那人干掉)。另一種營業模式——掛牌的營業方式,每個來到的顧客發一個號碼,如果哪個櫃台空閒了,就叫號碼最靠前的顧客來辦理業務;如果同時幾個櫃台空閒,就按照一種法則來決定這幾個櫃台叫號的順序(最簡單的是按櫃台號碼順序)。這樣,就能保證顧客按照先來後到的順序接受服務——因為大家排在一個隊裡。這樣的營業模式我在北京的西直門工商銀行見過,應該說這是比較合理的一種營業模式。

我按照實際情況模擬,實現如下:

  1. #ifndef Simulation_H  
  2. #define Simulation_H  
  3.  
  4. #include <iostream.h>  
  5. #include <stdlib.h>  
  6. #include <time.h>  
  7.  
  8.  
  9. class Teller  
  10. {  
  11.  public:  
  12. int totalCustomerCount;  
  13. int totalServiceTime;  
  14. int finishServiceTime;  
  15. Teller() :totalCustomerCount(0), totalServiceTime(0),  
  16. finishServiceTime(0) {}  
  17. };  
  18.  
  19. //#define PRINTPROCESS  
  20.  
  21. class Simulation  
  22. {  
  23.  public:  
  24. Simulation()  
  25. {  
  26.  cout << endl << "輸入模擬參數" << endl;  
  27.  cout << "櫃台數量:"; cin >> tellerNum;  
  28.  cout << "營業時間:"; cin >> simuTime;  
  29.  cout << "兩個顧客來到的最小間隔時間:"; cin >> arrivalLow;  
  30.  cout << "兩個顧客來到的最大間隔時間:"; cin >> arrivalHigh;  
  31.  cout << "櫃台服務最短時間:"; cin >> serviceLow;  
  32.  cout << "櫃台服務最長時間:"; cin >> serviceHigh;  
  33.  arrivalRange = arrivalHigh - arrivalLow + 1;  
  34.  serviceRange = serviceHigh - serviceLow + 1;  
  35.  srand((unsigned)time(NULL));  
  36. }  
  37. Simulation(int tellerNum, int simuTime, int arrivalLow, int arrivalHigh, int serviceLow, int serviceHigh)  
  38.  
  39. : tellerNum(tellerNum), simuTime(simuTime), arrivalLow(arrivalLow), arrivalHigh(arrivalHigh),  
  40.  
  41. serviceLow(serviceLow), serviceHigh(serviceHigh),  
  42. arrivalRange(arrivalHigh - arrivalLow + 1), serviceRange(serviceHigh - serviceLow + 1)  
  43. { srand((unsigned)time(NULL)); }  
  44.  
  45. void Initialize()  
  46. {  
  47.  curTime = nextTime = 0;  
  48.  customerNum = customerTime = 0;  
  49.  for (int i = 1; i <= tellerNum; i++)  
  50.  {  
  51. tellers[i].totalCustomerCount = 0;  
  52. tellers[i].totalServiceTime = 0;  
  53. tellers[i].finishServiceTime = 0;  
  54.  }  
  55.  customer.MakeEmpty();  
  56. }  
  57.  
  58. void Run()  
  59. {  
  60.  Initialize();   
  61.  NextArrived();  
  62.  #ifdef PRINTPROCESS  
  63.  
  64. cout << endl;  
  65. cout << "tellerID";  
  66. for (int k = 1; k <= tellerNum; k++) cout << "\tTELLER " << k;  
  67. cout << endl;  
  68.  #endif  
  69.  
  70.  for (curTime = 0; curTime <= simuTime; curTime++)  
  71.  {  
  72. if (curTime >= nextTime)  
  73. {  
  74.  CustomerArrived();  
  75.  NextArrived();  
  76. }  
  77. #ifdef PRINTPROCESS   
  78.  cout << "Time: " << curTime << " ";  
  79. #endif  
  80. for (int i = 1; i <= tellerNum; i++)  
  81. {  
  82.  if (tellers[i].finishServiceTime < curTime) tellers[i].finishServiceTime = curTime;  
  83.  if (tellers[i].finishServiceTime == curTime && !customer.IsEmpty())  
  84.  {  
  85. int t = NextService();  
  86. #ifdef PRINTPROCESS   
  87.  cout << '\t' << customerNum + 1 << '(' << customer.GetFront() << ',' << t << ')';  
  88. #endif  
  89. CustomerDeparture();  
  90. tellers[i].totalCustomerCount++;  
  91. tellers[i].totalServiceTime += t;  
  92. tellers[i].finishServiceTime += t;  
  93.  }  
  94.  
  95.  #ifdef PRINTPROCESS   
  96.  else cout << "\t ";  
  97.  #endif  
  98. }  
  99. #ifdef PRINTPROCESS   
  100.  cout << endl;  
  101. #endif  
  102.  }  
  103.  PrintResult();  
  104. }  
  105.  
  106. void PtintSimuPara()  
  107. {  
  108.  cout << endl << "模擬參數" << endl;  
  109.  cout << "櫃台數量: " << tellerNum << "\t營業時間:" << simuTime << endl;  
  110.  cout << "兩個顧客來到的最小間隔時間:" << arrivalLow << endl;  
  111.  cout << "兩個顧客來到的最大間隔時間:" << arrivalHigh << endl;;  
  112.  cout << "櫃台服務最短時間:" << serviceLow << endl;  
  113.  cout << "櫃台服務最長時間:" << serviceHigh << endl;  
  114. }  
  115.  
  116. void PrintResult()  
  117. {  
  118.  int tSN = 0;  
  119.  long tST = 0;  
  120.  cout << endl;  
  121.  cout << "-------------模擬結果-------------------";  
  122.  cout << endl << "tellerID\tServiceNum\tServiceTime\tAverageTime" << endl;  
  123.  for (int i = 1; i <= tellerNum; i++)  
  124.  {  
  125. cout << "TELLER " << i;  
  126. cout << '\t' << tellers[i].totalCustomerCount << " "; tSN += tellers[i].totalCustomerCount;  
  127. cout << '\t' << tellers[i].totalServiceTime << " "; tST += (long)tellers[i].totalServiceTime;  
  128.  
  129. cout << '\t';  
  130. if (tellers[i].totalCustomerCount)  
  131.  cout << (float)tellers[i].totalServiceTime/(float)tellers[i].totalCustomerCount;  
  132. else cout << 0;  
  133.  cout << " " << endl;  
  134.  }  
  135.  cout << "TOTAL \t" << tSN << " \t" << tST << " \t";  
  136.  if (tSN) cout << (float)tST/(float)tSN; else cout << 0;  
  137.  cout << " " << endl;  
  138.  cout << "Customer Number:\t" << customerNum << "\tno Service:\t" << customerNum - tSN << endl;  
  139.  
  140.  cout << "Customer WaitTime:\t" << customerTime << "\tAvgWaitTime:\t";  
  141.  if (tSN) cout << (float)customerTime/(float)tSN; else cout << 0;  
  142.  cout << endl;  
  143. }  
  144.  
  145. private:  
  146.  int tellerNum;  
  147.  int simuTime;  
  148.  int curTime, nextTime;  
  149.  int customerNum;  
  150.  long customerTime;  
  151.  int arrivalLow, arrivalHigh, arrivalRange;  
  152.  int serviceLow, serviceHigh, serviceRange;  
  153.  Teller tellers[21];  
  154.  Queue<int> customer;  
  155.  
  156.  void NextArrived()  
  157.  {  
  158. nextTime += arrivalLow + rand() % arrivalRange;  
  159.  }  
  160.  
  161.  int NextService()  
  162.  {  
  163. return serviceLow + rand() % serviceRange;  
  164.  }  
  165.  
  166. void CustomerArrived()  
  167. {  
  168.  customerNum++;  
  169.  customer.EnQueue(nextTime);  
  170. }  
  171.  
  172. void CustomerDeparture()  
  173. {  
  174.  customerTime += (long)curTime - (long)customer.DeQueue();  
  175. }  
  176.  
  177. };  
  178.  
  179. #endif 

幾點說明

1、Run()的過程是這樣的:curTime是時鐘,從開始營業計時,自然流逝到停止營業。當顧客到的事件發生時(顧客到時間等於當前時間,小於判定是因為個別時候顧客同時到達——輸入arrivalLow=0的情況,而在同一時間,只給一個顧客發號碼),給這個顧客發號碼(用顧客到時間標示這個顧客,入隊,來到顧客數增1)。當櫃台服務完畢時(櫃台服務完時間等於當前時間),該櫃台服務人數增1,服務時間累加,顧客離開事件發生,下一個顧客到該櫃台。因為櫃台開始都是空閒的,所以實際代碼和這個有點出入。最後,停止營業的時候,停止發號碼,還在接受服務的顧客繼續到服務完,其他還在排隊的就散伙了。

2、模擬結果分別是:各個櫃台的服務人數、服務時間、平均服務時間,總的服務人數、服務時間、平均服務時間,來的顧客總數、沒被服務的數目(來的太晚了)、接受服務顧客總等待時間、平均等待時間。

3、這個算法效率是比較低的,實際上可以不用隊列完成這個模擬(用顧客到時間推動當前時鐘,櫃台直接公告服務完成時間),但這樣就和實際情況有很大差別了——出納員沒等看見人就知道什麼時候完?雖然結果是一樣的,但是理解起來很莫名其妙,尤其是作為教學目的講解的時候。當然了,實際中為了提高模擬效率,本文的這個算法是不值得提倡的。

4、注釋掉的#define PRINTPROCESS,去掉注釋符後,在運行模擬的時候,能打印出每個時刻櫃台的服務情況(第幾個顧客,顧客到達時間,接受服務時間),但只限4個櫃台以下,多了的話屏幕就滿了(格式就亂了)。

這是數據結構中第一個實際應用的例子,而且也有現實意義。你可以看出各個櫃台在不同的業務密度下的工作強度(要麼給哪個櫃台出納員發獎金,要麼輪換櫃台),各種情況下顧客的等待時間(人都是輪到自己就不著急了),還有各種情況下設立幾個櫃台合理(很少的空閒時間,很短的等待時間,幾乎為零的未服務人數)。例如這樣:

  1. for (int i = 1; i < 16; i++)  
  2. {  
  3.  Simulation a(i,240,1,4,8,15);  
  4.  a.Run();  
  5. }  

你模擬一下就會得出,在不太繁忙的銀行,4~5個櫃台是合適的——現在的銀行大部分都是這樣的。

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