首页 > 编程语言 > 详细

C++使用vector

时间:2016-10-03 23:41:11      阅读:425      评论:0      收藏:0      [点我收藏+]

 

#include <iostream>
#include <string>
#include <vector>

using namespace std;

void show(vector<int> v)
{
        for(auto v1 : v){
                cout << v1 << endl;
        }
}

void show2(vector<int> v)
{
        for(vector<int>::const_iterator v1 = v.cbegin(); v1 != v.cend(); v1++){
                cout << *v1 << endl;
        }
}

int main()
{
        vector<int> int_vec;
        for(int i = 0; i < 100; i++){
                int_vec.push_back(i);
        }

        show2(int_vec);

        //for(vector<int>::iterator t = int_vec.begin(); t != int_vec.end(); t++){
        //      cout << *t << endl;
        //}
        /*循环vector*/
        //for(auto v : int_vec){
        //      cout << v << endl;
        //}
}

 

C++使用vector

原文:http://www.cnblogs.com/bai-jimmy/p/5929787.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!