标签:war lis 空间 app 双端队列 stack back 随机 适配
容器为模板类
vector
deque (双端队列)
list (双向链表)
forward_list(单向链表)
array (固定大小数组)
string ( 与vector 相似)保存字符, substr(), inset(), assign,append(), repace(), find() 第一次出现, rfind() 最后一次出现。to_string()
插入:
push_back()
push_front()
insert() 返回值为iterator
删除:
pop_back()
pop_front()
erase(p)
erase(p, e)
clear()
stack: pop(), push(), top()
queue: pop(), front(), back(), top(), push()
priority_queue
标签:war lis 空间 app 双端队列 stack back 随机 适配
原文地址:http://www.cnblogs.com/fanhaha/p/7420775.html