【门禁系统】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] << " ";//展示
}
}
}

浙公网安备 33010602011771号