ring.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //********************
  2. //**    ring.cpp    **
  3. //********************
  4. #include <iostream.h>
  5. #include <iomanip.h>
  6. #include "ring.h"
  7. Ring::Ring(int n)
  8. {
  9.   pBegin=new Boy[n];         //分配小孩结构数组
  10.   pCurrent=pBegin;
  11.   for(int i=1; i<=n; i++,pCurrent=pCurrent->next){
  12.     pCurrent->next = pBegin+i%n;       //将结点链起来
  13.     pCurrent->code=i;        //小孩编号
  14.     //PutBoy();
  15.   }
  16.   cout <<endl;
  17.   pCurrent=&pBegin[n-1];     //当前小孩位置在最后一个编号
  18.   Display();
  19. }
  20. void Ring::Count(int m)
  21. {
  22.   for(int i=1; i<=m; i++){
  23.     pivot = pCurrent;
  24.     pCurrent = pCurrent->next;
  25.   }
  26. }
  27. void Ring::PutBoy() const
  28. {
  29.   static int numInLine;
  30.   if(numInLine++%18==0)
  31.     cout <<endl;
  32.   cout <<setw(4) <<pCurrent->code;
  33. }
  34. void Ring::ClearBoy()
  35. {
  36.   pivot->next=pCurrent->next;
  37. }
  38. Ring::~Ring()
  39. {
  40.   delete[]pBegin;
  41. }
  42. void Ring::Display()
  43. {
  44.   Boy* pB = pCurrent->next;
  45.   if(!pB) return;
  46.   do{
  47.     pCurrent = pCurrent->next;
  48.     PutBoy();
  49.   }while(pB!=pCurrent->next);
  50.   cout <<endl;
  51. }