c++ vector 容器介紹
感謝博主http://www.cnblogs.com/wang7/archive/2012/04/27/2474138.html
這是我這種新手看了非常明瞭的vector容器介紹
在c++中,vector是一個十分有用的容器,下面對這個容器做一下總結。
1 基本操作
(1)標頭檔案#include<vector>.
(2)建立vector物件,vector<int> vec;
(3)尾部插入數字:vec.push_back(a);
(4)使用下標訪問元素,cout<<vec[0]<<endl;記住下標是從0開始的。
(5)使用迭代器訪問元素.
vector<int>::iterator it; for(it=vec.begin();it!=vec.end();it++) cout<<*it<<endl;
(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開始//這裡應該是vec.erase(vec.begin()+i,vec.begin()+j);刪除區間[i,j-1];區間從0開始
(8)向量大小:vec.size();
(9)清空:vec.clear();
2
vector的元素不僅僅可以使int,double,string,還可以是結構體,但是要注意:結構體要定義為全域性的,否則會出錯。下面是一段簡短的程式程式碼:
#include<stdio.h> #include<algorithm> #include<vector> #include<iostream> using namespace std; typedef struct rect { int id; int length;int width;
//對於向量元素是結構體的,可在結構體內部定義比較函式,下面按照id,length,width升序排序。
bool operator< (const rect &a) const
{
if(id!=a.id)
return id<a.id;
else
{
if(length!=a.length)
return length<a.length;
else
return width<a.width;
}
} }Rect; int main() { vector<Rect> vec; Rect rect; rect.id=1; rect.length=2; rect.width=3; vec.push_back(rect); vector<Rect>::iterator it=vec.begin(); cout<<(*it).id<<' '<<(*it).length<<' '<<(*it).width<<endl; return 0; }
3 演算法
(1) 使用reverse將元素翻轉:需要標頭檔案#include<algorithm>
reverse(vec.begin(),vec.end());將元素翻轉(在vector中,如果一個函式中需要兩個迭代器,
一般後一個都不包含.)
(2)使用sort排序:需要標頭檔案#include<algorithm>,
sort(vec.begin(),vec.end());(預設是按升序排列,即從小到大).
可以通過重寫排序比較函式按照降序比較,如下:
定義排序比較函式:
bool Comp(const int &a,const int &b)
{
return a>b;
}
呼叫時:sort(vec.begin(),vec.end(),Comp),這樣就降序排序。
最後這個函式的應用來寫個牛客網華為機試的成績排序這個小題目的程式碼:
題目描述
查詢和排序
題目:輸入任意(使用者,成績)序列,可以獲得成績從高到低或從低到高的排列,相同成績
都按先錄入排列在前的規則處理。
例示:
jack 70
peter 96
Tom 70
smith 67
從高到低 成績
peter 96
jack 70
Tom 70
smith 67
從低到高
smith 67
Tom 70
jack 70
peter 96
輸入描述:
輸入多行,先輸入要排序的人的個數,然後分別輸入他們的名字和成績,以一個空格隔開
輸出描述:
按照指定方式輸出名字和成績,名字和成績之間以一個空格隔開
#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
using namespace std;
struct student
{
string name;
int grade;
};
bool cmp0(const student &stu1,const student &stu2)
{
return stu1.grade>stu2.grade;
}
bool cmp1(const student &stu1,const student &stu2)
{
return stu1.grade<stu2.grade;
}
int main()
{
int num=0;
int shunxu=0;
while(cin>>num>>shunxu)
{
vector<student>stu(num);
for(int i=0;i<num;i++)
{
cin>>stu[i].name>>stu[i].grade;
}
if(shunxu==0)
{
stable_sort(stu.begin(),stu.end(),cmp0);
}
else if(shunxu==1)
{
stable_sort(stu.begin(),stu.end(),cmp1);
}
for(int i=0;i<num;i++)
cout<<stu[i].name<<' '<<stu[i].grade<<endl;
}
return 0;
}