map 随笔

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;
}
posted @ 2022-10-05 22:40  KevinLikesCoding  阅读(25)  评论(0编辑  收藏  举报