C++小项目-演讲比赛

#include<iostream>
using namespace std;
#include <vector>
#include <string>
#include <deque>
#include <map>
#include <ctime>
#include <algorithm>
#include <numeric>
#include <functional>
class Speaker
{
public:
	
	string m_Name;
	int m_Score[3] ; //得分数组

};

void createSpeaker(vector<int>& v, map<int, Speaker>& m)
{
	string nameSeed = "ABCDEFGHIJKLMNOPQRSTUVXW";
	for (int i = 0; i < nameSeed.size(); i++)
	{
		string name = "选手";
		name += nameSeed[i];

		Speaker sp;
		sp.m_Name = name;
		for (int j = 0; j < 3; j++)
		{
			sp.m_Score[j] = 0;
		}

		v.push_back(i + 100);
		m.insert(make_pair(i + 100, sp));
	}
}

void speechDraw(vector<int>& v)
{
	random_shuffle(v.begin(),v.end());
}

void speechContest(int index,vector<int>& v1, map<int, Speaker>& m, vector<int>& v2)
{
	multimap<int, int, greater<int>> groupMap; //key 分数 value 编号
	int num = 0;

	//第几轮比赛 v1 比赛选手编号 m 选手标号和具体选手 v2晋级选手编号 容器
	for (auto it = v1.begin(); it != v1.end(); it++)
	{
		num++;
		deque<int>d;
		for (int i = 0; i < 10; i++)
		{
			int score = rand() % 41 + 60;
			d.push_back(score);
		}
		sort(d.begin(), d.end());
		d.pop_back();
		d.pop_front();
		//累计分数
		int sum = accumulate(d.begin(), d.end(),0);
		int avg = sum / d.size();

		//将平均分放入到m容器中
		m[*it].m_Score[index - 1] = avg;

		//每六个人取前三名晋级
		//临时容器 保存6个人
		//临时容器 存入数据
		groupMap.insert(make_pair(avg, *it));

		if (num % 6 == 0)
		{
			//cout << "小组比赛成绩如下: " << endl;
			//for (auto mit = groupMap.begin(); mit != groupMap.end(); mit++)
			//{
			//	cout << "编号: " << mit->second << "姓名" << m[mit->second].m_Name
			//		<< "得分" << m[mit->second].m_Score << endl;
			//}
			//取前三名
			int count = 0;
			for (multimap<int, int, greater<int>>::iterator mltit = groupMap.begin(); mltit != groupMap.end(), count < 3;
				mltit++, count++)
			{
				//晋级容器获取数据
				v2.push_back(mltit->second);
			}
			groupMap.clear();
		}
	}
}

void showScore(int index, vector<int>& v, map<int, Speaker>& m)
{
	cout << "第" << index << "轮 比赛程序如下: " << endl;
	for (map<int, Speaker>::iterator it = m.begin(); it != m.end(); it++)
	{
		cout << "选手编号: " << it->first << "姓名" << it->second.m_Name
			<< "分数" << it->second.m_Score[index - 1] << endl;
	}
	cout << "晋级选手编号" << endl;
	for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
	{
		cout << *it << endl;
	}
	
}

int main()
{
	//随机数种子
	srand((unsigned int)time(NULL));

	vector<int>v1;//选手编号
	map<int, Speaker>m; //存放选手编号和具体的选手

	//创建选手
	createSpeaker(v1, m);

	for (auto it = m.begin(); it != m.end(); it++)
	{
		cout << "编号" << it->first << "姓名" << it->second.m_Name << endl;
	}

	//抽签
	speechDraw(v1);
	
	vector<int>v2; //进入下一轮比赛的人员编号
	//比赛
	speechContest(1, v1, m, v2);
	//显示比赛结果
	showScore(1, v2, m); //轮数 晋级编号 具体人员信息

	//第二轮比赛
	speechDraw(v2);
	vector<int>v3;
	speechContest(2, v2, m, v3);
	showScore(2, v3, m);
	//第三轮比赛
	speechDraw(v3);
	vector<int>v4;
	speechContest(3, v3, m, v4);
	showScore(3, v4, m);



	system("pause");
	return EXIT_SUCCESS;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值