队列 queue
1 | // 定义: |
双向队列 deque
1 | c.assign(begin, end); 将[beg; end)区间中的数据赋值给c,其中begin和end为其他容器的迭代器 |
Vector
https://blog.csdn.net/weixin_43930512/article/details/91040416
1 | // vector初始化 |
字符串 string
C风格
1 | // 初始化 |
C++风格
这里查看详细的用法:https://blog.csdn.net/weixin_43930512/article/details/91041396
1 | // string 初始化 |