STL——电梯案例

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#include<list>
#include<vector>
#include<queue>
#include<string>
#include<ctime>

//抽象人员
class Student
{
public:
	string name;
};

//打印人员
void printVector(vector<Student> &vec)
{
	for (vector<Student>::iterator it = vec.begin(); it != vec.end(); ++it)
	{
		cout << (*it).name << endl;
	}
}

//创建人员
void CreateStudent(queue<Student> &que,int num)
{
	string setName = "ABCDEFGHIJKLMN";
	int sum = rand() % 10;
	for (int i = 0; i < sum; i++)
	{
		Student stu;

		char buf[64] = { 0 };
		sprintf(buf, "%d", num);
		string s(buf);

		stu.name = "第";
		stu.name += s;
		stu.name += "层";
		stu.name += setName[i];

		que.push(stu);//每层的人员放入队列容器
	}
}
//mylist是电梯,que队列容器,pushV是拷贝进电梯的人员
int PushList(list<Student> &mylist,queue<Student> &que,vector<Student> &pushV)
{
	int tmppush = 0;//临时变量,记录出电梯人员数
	
	while (!que.empty())
	{
		if (mylist.size() >= 15)//电梯满了
		{
			break;
		}

		Student s = que.front();

		//拷贝到vector
		pushV.push_back(s);

		//进电梯
		mylist.push_back(s);

		//队列中队头元素出容器
		que.pop();

		tmppush++;
	}

	return tmppush;
}
//mylist是电梯,popV记录出电梯人员,num层数
int PopList(list<Student> &mylist, vector<Student> &popV,int num)
{
	int tmppop = 0;

	if (num == 17)//当到达17层,那么所有的人都要出电梯
	{
		while (!mylist.empty())
		{
			Student s=mylist.front();
			//把出电梯的人员拷贝到popV中
			popV.push_back(s);

			mylist.pop_front();//移除电梯的人
			tmppop++;
		}
	}

	int n = rand() % 5;//随机出电梯人数
	if (n == 0)
	{
		return tmppop;
	}
	//当电梯有人,且人数大于等于随机出电梯的人数才让人出电梯
	if (mylist.size() > 0 && mylist.size() >= n)
	{
		for (int i = 0; i < n; i++)
		{
			Student s = mylist.front();

			//把出电梯的人员拷贝到popV中
			popV.push_back(s);
			mylist.pop_front();//移除电梯的人
			tmppop++;
		}
	}

	return tmppop;
}
void test()
{
	srand((unsigned int)time(NULL));
	list<Student> mylist;//创建电梯

	int Pushnum = 0;//记录进电梯的总人数
	int Popnum = 0;//记录出电梯的总人数

	vector<Student> pushV;//记录进电梯的人员
	vector<Student> popV;//记录出电梯的人员

	//电梯上升
	for (int i = 1; i < 18; i++)
	{
		//创建人员
		queue<Student> que;
		//创建人员函数
		CreateStudent(que, i);

		//判断是否能进电梯
		if (mylist.size() <= 15)
		{
			//17层不要进人,到17层事件结束
			if (i < 17)
			{
				//进电梯
				Pushnum += PushList(mylist, que, pushV);
			}
		}

		//判断出电梯条件
		if (mylist.size()>0)//电梯要有人才能出
		{
			if (i > 1)//1层时,电梯是空的
			{
				//出电梯
				Popnum += PopList(mylist, popV, i);
			}
		}
	}

	//打印进电梯的人员
	printVector(pushV);
	cout << "进电梯人数:" << Pushnum << endl;
	//打印出电梯的人员
	printVector(popV);
	cout << "出电梯人数:" << Popnum << endl;

}

int main()
{
	test();
	system("pause");
	return EXIT_SUCCESS;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值