C vector容器vector資料訪問

2021-10-24 07:53:25 字數 673 閱讀 8592

c++vector容器vector資料訪問

功能描述:

函式原型:

#include

#include

using

namespace std;

void

test()

for(

int i =

0; i size()

;++i)

cout << endl;

for(

int i =

0; i < v1.

size()

;++i)

cout << endl;

cout <<

"v1的第乙個元素為: "

<< v1.

front()

<< endl;

cout <<

"v1的最後乙個元素為: "

<< v1.

back()

<< endl;

}int

main()

//除了用迭代器獲取vector容器中元素,和at也可以

//front返回容器中第乙個元素

//back返回容器中最後乙個元素

c++vector容器vector資料訪問

C vector容器 互換容器

vector容器互換 功能描述 實現兩個容器內元素進行互換 函式原型 swap vec 將vec與本身的元素互換 1.基本使用 如下 include using namespace std vector容器互換 include 1.基本使用 void printvector vector int v...

C vector容器型別

vector類為內建陣列提供了一種替代表示,與string類一樣 vector 類是隨標準 c 引入的標準庫的一部分 為了使用vector 我們必須包含相關的標頭檔案 include 使用vector有兩種不同的形式,即所謂的陣列習慣和 stl習慣。1.定義乙個已知長度的 vector vector...

C vector容器型別

vector類為內建陣列提供了一種替代表示,與string類一樣 vector 類是隨標準 c 引入的標準庫的一部分 為了使用vector 我們必須包含相關的標頭檔案 include 使用vector有兩種不同的形式,即所謂的陣列習慣和 stl習慣。1.定義乙個已知長度的 vector vector...