会员
周边
捐助
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
cappuccino的小窝
c++&.net技术研究
博客园
首页
新随笔
联系
订阅
管理
2014年6月18日
【STL】vector的insert方法详解
摘要: #include#includeusingnamespacestd;intmain(){vectorv(3);v[0]=2;v[1]=7;v[2]=9;v.insert(v.begin(),8);//在最前面插入新元素。v.insert(v.begin()+2,1);//在迭代器中第二个元素前插入新...
阅读全文
posted @ 2014-06-18 15:28 陈孝勇
阅读(68846)
评论(2)
推荐(1)
编辑