C++ Prime Plus 学习笔记028

书籍:C++ Primer Plus (第六版)(中文版)

工具:Dev-C++ 5.11

电脑信息:Intel® Xeon® CPU E5-2603 v3 @ 1.60GHz

系统类型:64位操作系统,基于X64的处理器 windows10 专业版

第12章 类和动态内存分配

12.6 复习各种技术

12.7 队列模拟

实例12.6

queue.h

cpp 复制代码
#ifndef QUEUE_H_
#define QUEUE_H_

class Customer
{
	private:
		long arrive;
		int processtime;
	public:
		Customer() {arrive = processtime = 0;}
		void set(long when);
		long when() const {return arrive;}
		int ptime() const {return processtime;}
};

typedef Customer Item;

class Queue
{
	private:
		struct Node{Item item;struct Node *next;};
		enum {Q_SIZE = 10};
		Node *front;
		Node *rear;
		int items;
		const int qsize;
		Queue(const Queue &q) : qsize(0) {}
		Queue & operator =(const Queue & q) {return *this;}
	public:
		Queue(int qs = Q_SIZE);
		~Queue();
		bool isempty() const;
		bool isfull() const;
		int queuecount() const;
		bool enqueue(const Item &item);
		bool dequeue(Item &item);
 };
 
#endif

queue.cpp

cpp 复制代码
#include "queue.h"
#include <cstdlib>

Queue::Queue(int qs) : qsize(qs)
{
	front = rear = NULL;
	items = 0;
}

Queue::~Queue()
{
	Node * temp;
	while(front != NULL)
	{
		temp = front;
		front = front->next;
		delete temp;
	}
}

bool Queue::isempty() const
{
	return items==0;
}

bool Queue::isfull() const
{
	return items ==qsize;
}

int Queue::queuecount() const
{
	return items;
}

bool Queue::enqueue(const Item & item)
{
	if(isfull())
		return false;
	Node *add = new Node;
	add->item=item;
	add->next=NULL;
	items++;
	if(front == NULL)
	{
		front =add;
	}
	else
	{
		rear->next =add;
	}
	rear=add;
	return true;
}

bool Queue::dequeue(Item &item) 
{
	if(front == NULL)
		return false;
	item=front->item;
	items--;
	Node *temp=front;
	front=front->next;
	delete temp;
	if(items ==0)
		rear = NULL;
	return true;
}

void Customer::set(long when)
{
	processtime = std::rand()%3 + 1;
	arrive = when;
}

bank.cpp

cpp 复制代码
#include <iostream>
#include <cstdlib>
#include <ctime>
#include "queue.h"
const int MIN_PER_HR = 60;
bool newcustomer(double x);

int main()
{
	using std::cin;
	using std::cout;
	using std::endl;
	using std::ios_base;
	std::srand(std::time(0));
	
	cout<<"Case study: Bamk of Heather Automatic Teller\n";
	cout<<"Enter maximum size of queue: ";
	int qs;
	cin>>qs;
	Queue line(qs);
	
	cout<<"Enter the number of simulation hours: ";
	int hours;
	cin>>hours;
	long cyclelimit=MIN_PER_HR *hours;
	
	cout<<"Enter the average number of customers per hours: ";
	double perhour;
	cin>>perhour;
	double min_per_cust;
	min_per_cust=MIN_PER_HR/perhour;
	
	Item temp;
	long turnaways=0;
	long customers=0;
	long served=0;
	long sum_line=0;
	int wait_time=0;
	long line_wait=0;
	
	for(int cycle=0;cycle<cyclelimit;cycle++)
	{
		if(newcustomer(min_per_cust))
		{
			if(line.isfull())
				turnaways++;
			else
				{
					customers++;
					temp.set(cycle);
					line.enqueue(temp);
				}			
		}
		if(wait_time<=0 && !line.isempty())
		{
			line.dequeue(temp);
			wait_time=temp.ptime();
			line_wait+=cycle-temp.when();
			served++;
		}
		if(wait_time>0)
			wait_time--;
		sum_line += line.queuecount();
	}
	
	if(customers>0)
	{
		cout<<"Customers accepted: "<<customers<<endl;
		cout<<"Customers served: "<<served<<endl;
		cout<<"           turnaways: "<<turnaways<<endl;
		cout<<"average queue size: ";
		cout.precision(2);
		cout.setf(ios_base::fixed,ios_base::floatfield);
		cout<<(double)sum_line/cyclelimit<<endl;
		cout<<" average wait time: "<<(double)line_wait/served<<" minutes\n";		
	}
	else
		cout<<"No customers!\n";
	cout<<"Done!\n";
	
	return 0;	
}

bool newcustomer(double x)
{
	return (std::rand()*x/RAND_MAX<1);
}

编译运行结果:

cpp 复制代码
Case study: Bamk of Heather Automatic Teller
Enter maximum size of queue: 10
Enter the number of simulation hours: 100
Enter the average number of customers per hours: 15
Customers accepted: 1472
Customers served: 1471
           turnaways: 0
average queue size: 0.14
 average wait time: 0.58 minutes
Done!

--------------------------------
Process exited after 34.8 seconds with return value 0
请按任意键继续. . .
相关推荐
好奇龙猫5 小时前
【AI学习-comfyUI学习-第三十节-第三十一节-FLUX-SD放大工作流+FLUX图生图工作流-各个部分学习】
人工智能·学习
saoys5 小时前
Opencv 学习笔记:图像掩膜操作(精准提取指定区域像素)
笔记·opencv·学习
电子小白1237 小时前
第13期PCB layout工程师初级培训-1-EDA软件的通用设置
笔记·嵌入式硬件·学习·pcb·layout
恋爱绝缘体17 小时前
2020重学C++重构你的C++知识体系
java·开发语言·c++·算法·junit
唯情于酒7 小时前
Docker学习
学习·docker·容器
Z1Jxxx7 小时前
加密算法加密算法
开发语言·c++·算法
乌萨奇也要立志学C++8 小时前
【洛谷】递归初阶 三道经典递归算法题(汉诺塔 / 占卜 DIY/FBI 树)详解
数据结构·c++·算法
️停云️8 小时前
【滑动窗口与双指针】不定长滑动窗口
c++·算法·leetcode·剪枝·哈希
clorisqqq8 小时前
人工智能现代方法笔记 第1章 绪论(1/2)
人工智能·笔记
charlie1145141918 小时前
嵌入式现代C++教程: 构造函数优化:初始化列表 vs 成员赋值
开发语言·c++·笔记·学习·嵌入式·现代c++