鱼C论坛

 找回密码
 立即注册
查看: 1047|回复: 1

[已解决]multimap的统计问题

[复制链接]
发表于 2022-4-12 18:07:28 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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

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


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

class Person
{
public:
        string p_name;
        int p_salary;
};

void setPerson(vector<Person>&v)
{
        string nameSeed = "ABCDEFGHIJ";
        for (int i = 0; i < 10; i++)
        {
                Person worker;
                worker.p_name = "员工" ;
                worker.p_name += nameSeed[i];
                worker.p_salary = rand() % 10000 + 10000;
                v.push_back(worker);
        }

}


void setGroup(vector<Person>&v, multimap<int, Person>&mw)
{
        for (vector<Person>::iterator it = v.begin(); it != v.end(); it++)
        {
                int depId = rand() % 3;//0  1  2
                
                //将员工插入部门中
                mw.insert(make_pair(depId, *it));
        }
}

void showWorkerByGroup(multimap<int, Person>& mw)
{
        cout << "策划部门:" << endl;
        multimap<int,Person>::iterator pos= mw.find(CEHUA);
        int count = mw.count(CEHUA);
        int index = 0;
        for (; pos != mw.end() && index<count; pos++, index++)
        {
                cout << "姓名:" << pos->second.p_name << " 工资:" << pos->second.p_salary << endl;
        }

        /*for (; pos != mw.end() && cout>0; pos++, cout--)
        {
                cout << "姓名:" << pos->second.p_name << " 工资:" << pos->second.p_salary << endl;
        }*/
        //想问一下这个count为什么不可以--和判断,给我的感觉是数据类型不一样,我也转到multimap.find的定义看了,好像返回的数据类型确实不是int,但是我看这里又可以用int接受,就有点不理解,希望大佬们可以帮忙解释一下
        
        
        
} 

int main()
{
        vector<Person>v;
        //插入员工
        setPerson(v);

        //员工分组
        multimap<int, Person>mw;
        setGroup(v, mw);

        //分组显示员工
        showWorkerByGroup(mw);

        
        system("pause");

        return 0;

}
最佳答案
2022-4-12 18:43:34
cout>0; pos++, cout--)
count
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-4-12 18:43:34 | 显示全部楼层    本楼为最佳答案   
cout>0; pos++, cout--)
count
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-17 22:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表