c++ map 总结
c++ map 总结
头文件
声明 map<int,int> p;
插入 p.insert(map<int,int>::value_type(key,value)) #已有覆盖
查找 p.find(key) map<int,int>::iterator it if it == end() key不存在
删除 p.erase(key)
自动升序排列
下标访问 p[key]=value
#include <iostream>
#include <map&
原创
2021-02-03 14:21:21 ·
186 阅读 ·
0 评论