码迷,mamicode.com
首页 > 编程语言 > 详细

C++学习笔记-list遍历

时间:2014-06-08 03:24:24      阅读:357      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   a   int   

// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
#include <vector>
#include <list>
#include <deque>
#include <string>
#include <numeric>
#include <algorithm>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
	int ia[]={0,1};
	list<int>::iterator itor;  //定义迭代器
	list<int> myList;  //定义LIST
	//给list添加值
	for(int ix=0;ix!=10;++ix)
	{
		myList.push_back(ix);
	}
	
	//从list第一个iterator开始
	itor = myList.begin();
	while(itor!=myList.end())
    {
        cout<< *itor++<<endl;
    } 
	
	return 0;
}

C++学习笔记-list遍历,布布扣,bubuko.com

C++学习笔记-list遍历

标签:c   class   blog   code   a   int   

原文地址:http://blog.csdn.net/wiker_yong/article/details/29189641

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!