C++
文章平均质量分 74
candyxiaohui
做最好的自己
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
顺序容器学习之二
#include #include #include #include using namespace std;int main(){list sli;deque evenDq,oddDq;int sval;//读入int对象并且存储在list对象中coutsval){sli.push_back(sval);}//复制list对象的元素至适当的dequefor (list::iterator it原创 2014-04-09 15:45:21 · 328 阅读 · 0 评论 -
顺序容器学习之一
标准库定义三种容器: 顺序容器 顺序容器适配器原创 2014-04-08 21:42:49 · 410 阅读 · 0 评论
分享