#include<iostream>
#include<deque>
#include<vector>
#include<algorithm>
#include<ctime>
using namespace std;
class Person
{
public:
Person(string name, int score)
{
this->m_Name = name;
this->m_Score = score;
}
string m_Name;
int m_Score;
};
void CreatePerson(vector<Person>& v)//传入一定要引用的方式引用
{
string nameSeed = "ABCDE";
for (int i = 0; i < 5; i++)
{
string name = "选手";
name += nameSeed[i];
int score = 0;
Person p(name, score);
//将创建的person对象 放入容器中
v.push_back(p);
}
}
void setScore(vector<Person>&v)
{
for (vector<Person>::iterator it = v.begin(); it != v.end(); it++)
{
//奖评委分数放入deque容器
deque<int>d;
for (int i = 0; i < 10; i++)
{
int score = rand() % 41 + 60; //随即打分60~100
d.push_back(score);
}
cout << "选手: " << it->m_Name << "打分: " << endl;
for (deque<int>::iterator dit= d.begin(); dit != d.end(); dit++)
{
cout << *dit << " ";
}
cout << endl;
//排序
sort(d.begin(), d.end());
//去除最高分和最低分
d.pop_back();
d.pop_front();
//取平均分
int sum = 0;
for (deque<int>::iterator dit = d.begin(); dit!= d.end(); dit++)
{
sum += *dit;//累加评委给的分数
}
int avg = sum / d.size();
//将平均分 赋值给选手身上
it->m_Score = avg;
}
}
int main()
{
//随机数种子
srand((unsigned int)time (NULL));
//1、创建5名选手
vector<Person>v;//存放选手容器
CreatePerson(v);
/*for (vector<Person>::iterator it=v.begin(); it != v.end(); it++)
{
cout << "姓名:"<<(*it).m_Name << " 分数:" << (*it).m_Score << endl;
}*/
//2、给5名选手打分
setScore(v);
for (vector<Person>::iterator it=v.begin(); it != v.end(); it++)
{
cout << "姓名:"<<(*it).m_Name << " 分数:" << (*it).m_Score << endl;
}
system("pause");
return 0;
}
