
STL
Masker_43
这个作者很懒,什么都没留下…
展开
-
【MAP】插入、修改、删除、查找
插入: m.insert(map<int,string>::value_type(1,"a"));//map容器,键值类型,value_type都不能少 //m.insert(make_pair<int,string>(1,"a")); //同样效果 修改: m.insert(map<int,string>::value_typ...原创 2019-05-09 15:59:04 · 1677 阅读 · 0 评论 -
【PAIR】
用法: typedef pair<int,int> Ptype; 访问: Ptype P1; P1.first = 1; P2.second = 2; pair + priority_queue: 默认先比较第一个元素,相同时比较第二个元素。 可以直接构造一个 pair。 priority_queue<Ptype , vector<Ptype> , greater...原创 2019-05-25 15:22:03 · 164 阅读 · 0 评论 -
sort、swap、unique、lower_bound、upper_bound
感谢: 代码: #include <iostream> #include <algorithm> using namespace std; const int maxn = 15; int n[maxn] = {1,5,2,4,1,3,2,3,5,1}; bool cmp(int i,int j){ return i>j; } void OUTPUT()...原创 2019-07-03 11:54:40 · 209 阅读 · 0 评论