首页 > 编程语言 > 详细

C++学习笔记-list遍历

时间:2014-06-08 03:24:41      阅读:953      评论:0      收藏:0      [点我收藏+]
// 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遍历

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

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