C/C++教程

C++ Vector容器及三种遍历方式

本文主要是介绍C++ Vector容器及三种遍历方式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include <iostream>
using namespace std;
#include <vector>
#include <algorithm> //标准算法头文件

//vector容器存放内置数据类型

void myPrint(int val)
{
    cout << val << endl;
}

void test01()
{
    //创建了一个vector容器,数组名为v
    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();

    system("pause");
    return 0;
}

 

这篇关于C++ Vector容器及三种遍历方式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!