ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

【门禁系统】map查找

2026/8/14 21:30:28 拓冰建站 浏览量
【门禁系统】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] << " ";//展示}}}