map是个非常好用的STL
小面会演示map的几个函数
一、赋值与查询
#include <bits/stdc++.h>
using namespace std;
map<int,int>mp;
int main(){
//赋值
mp[1]=1;
mp[2]=4;
mp[3]=9;
//查询
printf("%d",mp[2]);
return 0;
}
二、查询是否存在
#include <bits/stdc++.h>
using namespace std;
map<int,int>mp;
int main(){
mp[1]=1;
mp[2]=4;
mp[3]=9;
// 存在返回1、不存在返回0
printf("%d %d",mp.count(2),mp.count(4));
return 0;
}
三·、删除元素
#include <bits/stdc++.h>
using namespace std;
map<int,int>mp;
int main(){
mp[1]=1;
mp[2]=4;
mp[3]=9;
printf("%d\n",mp.count(2));
mp.erase(2);
printf("%d",mp.count(2));
return 0;
}
标签:count,map,int,namespace,mp,printf,随笔
From: https://www.cnblogs.com/xiaocaibiancheng/p/16756643.html