员工分组案例,使用vector,map容器实现详细图文教程(附C++代码)

在这里插入图片描述

💪 图像算法工程师,专业从事且热爱图像处理,图像处理专栏更新如下👇:
📝《图像去噪》
📝《超分辨率重建》
📝《语义分割》
📝《风格迁移》
📝《目标检测》
📝《图像增强》
📝《模型优化》
📝《模型实战部署》
📝《图像配准融合》
📝《数据集》
📝《高效助手》
📝《C++》


在这里插入图片描述

一、员工分组案例

1.1 需求

公司今天招聘了10个员工(ABCDEFGHI),10名员工进入公司之后,需要指派员工在那个部门工作。

员工信息有:姓名 工资组成;部门分为:策划、美术、研发。

随机给10名员工分配部门和工资。

通过multimap进行信息的插入 key(部门编号) value(员工)。

分部门显示员工信息。

1.2 实现步骤

按照1.1中的需求,实现步骤见下:

(1)创建10名员工,放到vector中
(2)遍历vector容器,取出每个员工,进行随机分组
(3)分组后,将员工部门编号作为key,具体员工作为value,放入到multimap容器中
(4)分部门显示员工信息

二、实现

按照上面1.2中的实现步骤,下面分模块讲解实现。

2.1 员工类创建

员工共有属性为姓名和工资,将这两个属性封装在Worker类中,代码见下:

class Worker
{
public:
    string m_Name;
    int m_Salary;
};

2.2 创建员工

按照需求创建员工ABCDEFGHI,并为这些员工随机赋值工资,工资随机取值范围[10000~19999],将员工姓名和工资都存放到vector容器中,代码见下:

// 创建员工
void createWorker(vector<Worker>&v)
{
    string nameSeed = "ABCDEFGHIJ";
    for (int i = 0;i < 10; i++)
    {
        Worker worker;
        worker.m_Name = "员工";
        worker.m_Name += nameSeed[i];

        worker.m_Salary = rand() % 10000 + 10000;   // 取值范围为10000~19999
        // 将员工放入到容器中
        v.push_back(worker);
    }
}

2.3 员工分组

按照需求,公司中的部门有:策划、美术、研发。需要将上面2.2步骤中创建的员工和对应薪资分配到各个部门下。

各部门下对应自己的员工,类似键key与值value的关系。通过索引部门找到该部门下的所有员工,所以需要一个map容器来存放部门。但是公司里会存在员工薪资相同的情况,所有使用multimap容器来存放部门。

将上面2.2中创建的所有员工和对应的薪资存放到各部门multimap容器中代码见下:

#define CEHUA 0
#define MEISHU 1
#define YANFA 2

// 员工分组
void setGroup(vector<Worker>&v,multimap<int,Worker>&m)
{
    for (vector<Worker>::iterator it = v.begin();it != v.end();it++)
    {
        // 产生随机部门编号
        int deptId = rand() % 3;   // 生成随机数0 1 2

        // 将员工插入到分组中
        // key部门编号,value具体员工
        m.insert(make_pair(deptId,*it));
    }
}

2.4 显示各部门员工信息

上面2.3步骤中已经将员工随机分配到了各个部门中,下面将各个部门的员工情况输出显示,代码见下:

// 显示各部门员工信息
void showWorkerByGourp(multimap<int,Worker>&m)
{
    // 0 A B C  1 D E  2 F G
    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++)    //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++)    //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++)    //pos和index都++
    {
        cout << "姓名:" << pos->second.m_Name << "工资:" << pos->second.m_Salary << endl;
    }
}

2.5 完整代码

将上面各个模块组合完整实现代码见下:

#include <iostream>
using namespace std;
#include <map>
#include <vector>
#include <string>
#include <ctime>

#define CEHUA 0
#define MEISHU 1
#define YANFA 2

class Worker
{
public:
    string m_Name;
    int m_Salary;
};

// 创建员工
void createWorker(vector<Worker>&v)
{
    string nameSeed = "ABCDEFGHIJ";
    for (int i = 0;i < 10; i++)
    {
        Worker worker;
        worker.m_Name = "员工";
        worker.m_Name += nameSeed[i];

        worker.m_Salary = rand() % 10000 + 10000;   // 取值范围为10000~19999
        // 将员工放入到容器中
        v.push_back(worker);
    }
}

// 员工分组
void setGroup(vector<Worker>&v,multimap<int,Worker>&m)
{
    for (vector<Worker>::iterator it = v.begin();it != v.end();it++)
    {
        // 产生随机部门编号
        int deptId = rand() % 3;   // 生成随机数0 1 2

        // 将员工插入到分组中
        // key部门编号,value具体员工
        m.insert(make_pair(deptId,*it));
    }
}

// 显示各部门员工信息
void showWorkerByGourp(multimap<int,Worker>&m)
{
    // 0 A B C  1 D E  2 F G
    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++)    //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++)    //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++)    //pos和index都++
    {
        cout << "姓名:" << pos->second.m_Name << "工资:" << pos->second.m_Salary << endl;
    }
}

int main()
{
    // 跟随系统时间做随机种子
    srand((unsigned int)time(NULL));

    // 1、创建员工
    vector<Worker>vWorker;
    createWorker(vWorker);
    
    // 测试
    for (vector<Worker>::iterator it = vWorker.begin();it != vWorker.end();it++)
    {
        cout << "姓名:" << it->m_Name << "     工资:" << it->m_Salary << endl;
    }

    // 2、员工分组
    multimap<int,Worker>mWorker;
    setGroup(vWorker,mWorker);   // vWorker是具体的员工,分组信息插入到mWorker容器中

    // 3、分组显示员工
    showWorkerByGourp(mWorker);

    system("pause");
    return 0;
}

2.6 输出

运行上面2.5中代码,输出见下,由于加了随系统时间生成随机数种子,每次运行代码,各部门员工分配及薪资都不一样。

在这里插入图片描述

三、总结

以上就是员工分组案例,使用vector,map容器实现的详细图文教程,希望能帮到你! 本人参考学习的是黑马程序员,仅作为笔记记录。

感谢您阅读到最后!😊总结不易,多多支持呀🌹 点赞👍收藏⭐评论✍️,您的三连是我持续更新的动力💖

关注下面「视觉研坊」,获取干货教程、实战案例、技术解答、行业资讯!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

视觉研坊

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值