
#include<iostream>
#include<vector>
#include<map>
#include<string>
#define CEHUA 0
#define MEISHU 1
#define YANFA 2
using namespace std;
class Worker
{
public:
string m_Name;
int m_Salary;
};
class Dep:public Worker
{
public :
Worker w;
string dep;
};
void createWorker(vector<Worker> &v)
{
string num = "ABCDEFGHIJ";
for (int i = 0; i < 10; i++)
{
Worker w;
w.m_Name = "员工:";
w.m_Name += num[i];
w.m_Salary = rand() % 10000 + 10000;
v.push_back(w);
}
}
void printNum(multimap<int,Worker>&m)
{
cout << "策划部门:" << endl;
multimap<int ,Worker>::iterator pos= m.find(CEHUA);
int count = m.count(CEHUA);
int index = 0;
for (; pos != m.end()&&index<count; pos++,index++)
{
cout << " 工资" << pos->second.m_Name << " 工资" << pos->second.m_Salary << endl;
}
cout << "-----------------------" << endl;
cout << "美术部门" << endl;
pos = m.find(MEISHU);
count = m.count(MEISHU);
index = 0;
for (; pos != m.end() && index < count; pos++, index++)
{
cout << " 工资" << pos->second.m_Name << " 工资" << pos->second.m_Salary << endl;
}
cout << "-----------------------" << endl;
cout << "研发部门" << endl;
pos = m.find(YANFA);
count = m.count(YANFA);
index = 0;
for (; pos != m.end() && index < count; pos++, index++)
{
cout << " 工资" << pos->second.m_Name << " 工资" << pos->second.m_Salary << endl;
}
}
void setGroup(vector<Worker>&v,multimap<int,Worker>&m)
{
for (vector<Worker>::iterator it = v.begin(); it != v.end(); it++)
{
int deptId = rand() % 3;
m.insert(make_pair(deptId, *it));
}
}
int main()
{
srand((unsigned int)time(NULL));d
vector<Worker>vWorker;
createWorker(vWorker);
multimap<int, Worker>mWorker;
setGroup(vWorker,mWorker);
printNum(mWorker);
system("pause");
return 0;
}