-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path02_vector存放内置数据类型.cpp
53 lines (43 loc) · 1.13 KB
/
02_vector存放内置数据类型.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
// 容器 vector
// 算法 for_each
// 迭代器 vector<int>::iterator
// vector容器存放内置数据类型 (类似数组)
void myPrint(int val)
{
cout << val << endl;
}
void test01()
{
// 创建了一个vector容器
vector<int> v;
// 向容器中插入数据
v.push_back(10);
v.push_back(20);
v.push_back(30);
v.push_back(40);
// 通过迭代器访问容器中的数据
vector<int>::iterator itBegin = v.begin(); // 起始迭代器,指向容器中第一个元素
vector<int>::iterator itEnd = v.end(); // 结束迭代器,指向容器中最后一个元素的下一位置
// 第一种遍历方式
// while (itBegin != itEnd)
// {
// cout << *itBegin << endl;
// itBegin++;
// }
// 第二种遍历方式
// for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
// {
// cout << *it << endl;
// }
// 第三种遍历方式:利用 STL 提供的遍历算法
for_each(v.begin(), v.end(), myPrint);
}
int main()
{
test01();
return 0;
}