C++常用STL
2021-04-15 00:28
标签:containe 快速 operator 开始 ati multimap class tps 多次 【链接】对vector中的pair进行多次find操作 迭代器 ‘‘#include 快速排序 函数重载 * 符号重载 nth_element 排序 找第n号元素(从第零号开始) pair类型 https://blog.csdn.net/Enterprise_/article/details/73695255 stack 和 queue 时间复杂度 加入 和删除操作 O(1) 优先队列 按照优先级插入 O(log n) 集合是排好序的 ![](/Users/yangfan/Library/Application Support/typora-user-images/image-20200326095744892.png) Multiset multimap 改为unordered_set, unordered_map 不需要理解每一个细节~~ www.cplusplus.com/reference/ 认真查看STL用法 自己瞎调 10e6数据能用O(nlog n) 再大 只能用O(n) https://vjudge.net C++常用STL 标签:containe 快速 operator 开始 ati multimap class tps 多次 原文地址:https://www.cnblogs.com/love-study-chase/p/13335179.htmlC++基本操作
vector
如何查找 第二维?或者第一维
class isE{
isE(int val) :User(val){}
bool operator()(const pair
排序
bool cmp(PII x, PII y){
return x.first > y.first;
}//从大到小排
sort(res.begin(), res.end(),cmp);
string
algorithm
stack 栈
queue队列
set集合
map
上一篇:java常用工具
下一篇:python实现聊天