C++进阶STL-综合案例

本文使用C++ STL模拟了一场24名同学参与的演讲比赛,经过三轮淘汰赛决出前三名。每轮比赛通过随机分组和评分淘汰选手,最终展示如何在每组中获取前三名的排序结果。
摘要由CSDN通过智能技术生成

演讲比赛

  • 演讲说明:24名同学参加演讲比赛,分为三轮。前两轮淘汰赛,后一轮是决赛。
  • 比赛方式:第一轮分4组,每组6人,每次随机分组,再进行比赛
         每组按顺序演讲完,评委打分,淘汰最后三名选手,然后进行下一轮
         第二轮剩下2个组,每组6人,每组再淘汰3人,进入决赛
         第三轮剩下1组,最后淘汰3名,剩下前3名获胜




代码:

#include "stdafx.h"
#include <vector>
#include <map>
#include <string>
#include <iostream>
#include <algorithm>
#include <time.h>
#include <deque>
#include <numeric>
#include <functional>

using namespace std;
class Student
{
   
public:
	string m_name;
	int m_scores[3];
};

//创建选手
void Init_Cadidate(map<int, Student>& map, vector<int>& v)
{
   
	string seed = "ABCDEFGHIJKLMNOPQISTUVWXYZ";
	for (int i = 0; i < 24; i++)
	{
   
		Student stu;
		stu.m_name = "选手";
		stu.m_name += seed[i];
		for (int j = 0; j < 3; j++)
		{
   
			stu.m_scores[j] = 0
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值