【门禁系统】map查找

map的简单使用和读取;

#include<iostream>
#include<map>
using namespace std;
int n;
map<int,int> mp;

int main(){
    cin >> n;
    for(int i = 0; i < n;i++){
        int temp;
        cin >> temp;
        if(mp.count(temp)==0){//寻找
            mp.insert({temp,1});//插入
            cout << 1 <<" ";
        }else{
            mp[temp]++;//修改
            cout << mp[temp] << " ";//展示
        }
    }
    
}
posted @ 2025-11-29 16:03  q_z_chen  阅读(0)  评论(0)    收藏  举报