C++是C语言的继承,它既可以进行C语言的过程化程序设计,又可以进行以抽象数据类型为特点的基于对象的程序设计,还可以进行以继承和多态为特点的面向对象的程序设计。C++擅长面向对象程序设计的同时,还可以进行基于过程的程序设计,因而C++就适应的问题规模而论,大小由之。c++vector是在c++中开发过程中c++vector作为一个十分有用的容器,许多朋友还不是很清楚c++vector用法,不知道c++vector到底有什么优秀的用法,不用着急一起来看看c++vector用法详解来增加自身对c++vector的了解吧。
1:基本操作
(1)头文件#includevector.
(2)创建vector对象,vectorintvec;
(3)尾部插入数字:vec.push_back(a);
(4)使用下标访问元素,coutvec[0]endl;记住下标是从0开始的。
(5)使用迭代器访问元素.
vectorint::iteratorit;
for(it=vec.begin();it!=vec.end();it++)
cout*itendl;
(6)插入元素:vec.insert(vec.begin()+i,a);在第i+1个元素前面插入a;
(7)删除元素:vec.erase(vec.begin()+2);删除第3个元素
vec.erase(vec.begin()+i,vec.end()+j);删除区间[i,j-1];区间从0开始
(8)向量大小:vec.size();
(9)清空:vec.clear();
2:vector的元素不仅仅可以使int,double,string,还可以是结构体,但是要注意:结构体要定义为全局的,否则会出错。
#includestdio.
#includealgorithm
#includevector
#includeiostream
usingnamespacestd;
typedefstructrect
{
intid;
intlength;
int width;
//对于向量元素是结构体的,可在结构体内部定义比较函数,下面按照id,length, width升序排序。
booloperator(constrect&a)const
{
if(id!=a.id)
returnida.id;
else
{
if(length!=a.length)
returnlengtha.length;
else
return widtha. width;
}
}
}Rect;
intmain()
{
vectorRectvec;
Rectrect;
rect.id=1;
rect.length=2;
rect. width=3;
vec.push_back(rect);
vectorRect::iteratorit=vec.begin();
cout(*it).id''(*it).length''(*it). widthendl;
return0;
}
3:算法
(1)使用reverse将元素翻转:需要头文件#includealgorithm
reverse(vec.begin(),vec.end());将元素翻转(在vector中,如果一个函数中需要两个迭代器,
一般后一个都不包含.)
(2)使用sort排序:需要头文件#includealgorithm,
sort(vec.begin(),vec.end());(默认是按升序排列,即从小到大).
可以通过重写排序比较函数按照降序比较,如下:
定义排序比较函数:
boolComp(constint&a,constint&b)
{
returnab;
}
调用时:sort(vec.begin(),vec.end(),Comp),这样就降序排序。
希望大家在这里都能获得自己需要的东西。