C++中vector容器的基本使用
程序员文章站
2022-03-23 23:17:15
...
#include <iostream>
#include "vector"
#include "algorithm"
using namespace std;
void forEachPrint(int val) {
cout << val << endl;
}
void test() {
vector<int> v;
//插入数据
v.push_back(10);
v.push_back(20);
v.push_back(30);
v.push_back(40);
v.push_back(50);
//遍历
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(),forEachPrint);
}
int main() {
test();
return 0;
}
下一篇: C++ 中STL基本容器中的vector
推荐阅读
-
MySQL中UNION与UNION ALL的基本使用方法
-
数据结构与算法(3)- C++ STL与java se中的vector
-
小计C++中的引用和vector
-
iOS开发中UITableview控件的基本使用及性能优化方法
-
iOS开发的UI制作中动态和静态单元格的基本使用教程
-
OpenCV中的新函数connectedComponentsWithStats使用(python和c++实例)
-
Python中Collections模块的Counter容器类使用教程
-
c++之修改vector中的元素(代码)
-
iOS的UI开发中UITabBarControlle的基本使用教程
-
使用HTML5在网页中嵌入音频和视频播放的基本方法