- sort排序三个参数
- a.size()求长度
- a.begin()第一个值
- a.end()最后一个值,下一个地方
- a.rbegin()反向迭代器,指向最后一个元素
- a.rend()反向迭代器,指向第一个元素前面
- s.erase(0,n)
- a.push_back()参考
- a.pop_back()
- pair<int,int>
- perority_queue<1,2,3>
- unordered_map<char,char> dic={
{’(’,’)’},
{’{’,’}’},
{’[’,’]’}
};字典 - stack sta;栈
- sta.pop()
- sta.push()
- isdigit(‘4’)
- string.find_first_not_of(’ ')
- string.find_last_not_of(’ ')
- set.lower_bound(x)
- ser.upper_bound(x)
c++常用函数记录
最新推荐文章于 2022-02-14 09:49:03 发布