STL_iterator迭代器(2)——几种迭代器对象的用法
要学会使用迭代器和容器以及算法,需要学习下面的新技术。
一、流和迭代器
本书的很多例子程序使用I/O流语句来读写数据。例如:
int value;
cout << "Enter value: ";
cin >> value;
cout << "You entered " << value << endl;
对于迭代器,有另一种方法使用流和标准函数。理解的要点是将输入/输出流作为容器看待。因此,任何接受迭代器参数的算法都可以和流一起工作。
//outstrm.cpp
#include <iostream>
#include <cstdlib> // Need rand(), srand()
#include <ctime> // Need time()
#include <algorithm> // Need sort(), copy()
#include <vector> // Need vector
#include <iterator> // 坑爹的教程!!,Need for ostream_iterator
using namespace std; void Display(vector<int>& v, const char* s); int main()
{
// Seed the random number generator
srand( time(NULL) ); // Construct vector and fill with random integer values
vector<int> collection(); for (int i = ; i < ; i++)
{
collection[i] = rand() % ;
} // Display, sort, and redisplay
Display(collection, "Before sorting");
sort(collection.begin(), collection.end());
Display(collection, "After sorting");
return ;
} // Display label s and contents of integer vector v
void Display(vector<int>& v, const char* s)
{
cout << endl << s << endl;
copy(v.begin(), v.end(), ostream_iterator<int>(cout, "\t"));
cout << endl;
}
函数Display()显示了如何使用一个输出流迭代器。下面的语句将容器中的值传输到cout输出流对象中:
copy(v.begin(), v.end(),ostream_iterator<int>(cout, "\t"));
第三个参数实例化了ostream_iterator<int>类型,并将它作为copy()函数的输出目标迭代器对象。“\t”字符串是作为分隔符。
这是STL神奇的一面『确实神奇』。为定义输出流迭代器,STL提供了模板类ostream_iterator。这个类的构造函数有两个参数:一个ostream对象和一个string值。
因此可以象下面一样简单地创建一个迭代器对象:
ostream_iterator<int>(cout, "\n")
该迭代器可以和任何接受一个输出迭代器的函数一起使用。
二、插入迭代器
插入迭代器用于将值插入到容器中。它们也叫做适配器,因为它们将容器适配或转化为一个迭代器,并用于copy()这样的算法中。例如,一个程序定义了一个链表和一个矢量容器:
list<double> dList;
vector<double> dVector;
通过使用front_inserter迭代器对象,可以只用单个copy()语句就完成将矢量中的对象插入到链表前端的操作:
copy(dVector.begin(), dVector.end(), front_inserter(dList));
三种插入迭代器如下:
- inserter 将对象插入到容器任何对象的前面。
- front_inserter 将对象插入到数据集的前面——例如,链表表头。
- back_inserter 将对象插入到集合的尾部——例如,矢量的尾部,导致矢量容器扩展。
使用插入迭代器可能导致容器中的其他对象移动位置,因而使得现存的迭代器非法。例如,将一个对象插入到矢量容器将导致其他值移动位置以腾出空间。一般来说,插入到象链表这样的结构中更为有效,因为它们不会导致其他对象移动。
#include <iostream>
#include <algorithm>
#include <list>
#include <iterator> using namespace std; int iArray[] = { , , , , }; void Display(list<int>& v, const char* s); int main()
{
list<int> iList; // Copy iArray backwards into iList copy(iArray, iArray + , front_inserter(iList)); //5 4 3 2 1
//copy(iArray, iArray + 5, inserter(iList, iList.begin())); //1 2 3 4 5
//copy(iArray, iArray + 5, back_inserter(iList)); //1 2 3 4 5 Display(iList, "Before find and copy"); // Locate value 3 in iList
list<int>::iterator p = find(iList.begin(), iList.end(), ); // Copy first two iArray values to iList ahead of p
copy(iArray, iArray + , inserter(iList, p)); //插入1 2到3的前面
Display(iList, "After find and copy"); return ;
} void Display(list<int>& a, const char* s)
{
cout << s << endl;
copy(a.begin(), a.end(), ostream_iterator<int>(cout, " "));
cout << endl;
}
使用front_inserter插入到链表的前端的时候,数据会倒过来- -
使用普通插入器inserter指定插入到链表前端和使用back_inserter数据都是按照原顺序输出的。。
三、混合迭代器函数
在涉及到容器和算法的操作中,还有两个迭代器函数非常有用:
- advance() 按指定的数目增减迭代器。
- distance() 返回到达一个迭代器所需(递增)操作的数目。
#include <iostream>
#include <algorithm>
#include <list>
using namespace std; int iArray[] = { , , , , }; int main()
{
list<int> iList; copy(iArray, iArray + , inserter(iList, iList.begin())); //1 2 3 4 5 list<int>::iterator p =find(iList.begin(), iList.end(), ); cout << "before: p == " << *p << endl;
advance(p, ); // same as p = p + 2; 向后移动3位
cout << "after : p == " << *p << endl; int k = distance(p, iList.end()); //起始位置在前,终止位置在后
cout << "k == " << k << endl; k = distance(p, iList.begin()); //2 STL中list是双向循环链表
cout << "k == " << k << endl; k = distance(iList.begin(), p); //4
cout << "k == " << k << endl; //begin指向第一个位置,end指向最后一个位置的后一个位置
//cout << *iList.begin() << endl;
//cout << *iList.end() << endl;
return ;
}
advance()函数接受两个参数。第二个参数是向前推进的数目。对于前推迭代器,该值必须为正,而对于双向迭代器和随机访问迭代器,该值可以为负。
(这不是往后推进的吗?呃。。。不知道作者有没有搞错- -以上是作者原话)
使用 distance()函数来返回到达另一个迭代器所需要的步骤。
前者到后者的步数
STL_iterator迭代器(2)——几种迭代器对象的用法的更多相关文章
- python学习 day13 迭代器,生成器,枚举对象
一.复习 1.闭包:定义在函数内部的函数(被函数嵌套的函数) 2.装饰器:闭包的一个应用场景 -- 为一个函数添加新功能的工具 3.开放封闭原则:不能修改源代码,不能修改调用方式,但可以对外提供增加新 ...
- 理解迭代器,生成器,yield,可迭代对象
原文:https://foofish.net/iterators-vs-generators.html 本文源自RQ作者的一篇博文,原文是Iterables vs. Iterators vs. Gen ...
- python学习Day14 带参装饰器、可迭代对象、迭代器对象、for 迭代器工作原理、枚举对象、生成器
复习 函数的嵌套定义:在函数内部定义另一个函数 闭包:被嵌套的函数 -- 1.外层通过形参给内层函数传参 -- 2.返回内部函数对象----> 延迟执行, 开放封闭原则: 功能可以拓展,但源代 ...
- day13 十三、迭代器、生成器、枚举对象
def my_generator(): print(1111) yield '结果1' print(2222) yield '结果2' print(3333) yield '结果3' print(44 ...
- python - 迭代器(迭代协议/可迭代对象)
迭代器 # 迭代器协议 # 迭代协议:对象必须提供一个next方法,执行该方法要么返回迭代中的下一项,要么就触发一个 StopIteration 异常,以终止迭代(只能往后走不能往前退) # 可迭代对 ...
- C++五种迭代器之间的关系
迭代器操作 说明(1)所有迭代器p++ 后置自增迭代器++p ...
- C++ Iterator迭代器介绍及Iterator迭代器用法代码举例
C++ Iterator迭代器介绍 迭代器可被用来访问一个容器类的所包函的全部元素,其行为像一个指针.举一个例子,你可用一个迭代器来实现对vector容器中所含元素的遍历.有这么几种迭代器如下: 迭代 ...
- javascript中15种原生对象类型系统综述
前面的话 在编程语言中,能够表示并操作的值的类型称做数据类型,编程语言最基本的特性就是能够支持多种数据类型.javascript拥有强大的类型系统,主要包括原生对象.宿主对象和浏览器拓展对象,本文主要 ...
- db4o种纯对象数据库引擎
db4o是一种纯对象数据库,相对于传统的关系数据库+ORM,db4o具有以下好处:1)以存对象的方式存取数据(废话--,不过你考虑一下完全以对象的方式去考虑数据的存取对传统的数据库设计思维来说是多么大 ...
随机推荐
- Linux access
1.access函数 功能描述:检查调用进程是否可以对指定的文件执行某种操作. 用法: #include <unistd.h> #include <fcntl.h>int ac ...
- myeclipse跟eclipse中使用github做版本控制工具
今天早上花了一上午的时间,了解了在myeclipse跟eclipse中使用github. 好吧 说说怎么做的,让大伙少走一点路,我就简单描述下,需要软件的私信我 第一:下载git 第二:靠谱.但是pu ...
- maven指定构建的编码格式
pom.xml文件添加如下内容: <properties> <project.build.sourceEncoding>UTF-8</project.build.s ...
- (转)phpmyadmin操作技巧:如何在phpmyadmin里面复制mysql数据库?
转之--http://blogunion.org/posts/copy-mysql-data-in-phpmyadmin.html 对于每一个站长而言,都会遇到要进行网站测试的时候.这个时候,往往需要 ...
- B/S 獲取客戶端Mac地址
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx. ...
- CSS样式margin:0 auto不居中
<style type="text/css">html,body{height:100%;width:960px;}.container{background-colo ...
- eval("("+json对象+")")
var obj=eval("("+data+")"); 看看下面这条,应该能想到json的数据结构“+(json对象名)+”由于json是以”{}”的方式来开始 ...
- php设计模式之简单工厂模式
①抽象基类:类中定义抽象一些方法,用以在子类中实现 ②继承自抽象基类的子类:实现基类中的抽象方法 ③工厂类:用以实例化所有相对应的子类 /** * * 定义个抽象的类,让子类去继承实现它 * */ a ...
- MongoDB-GRIDFS大文件系统
gridfs 是一种在mongodb中存储大二进制文件的机制,使用gridfs的原因: 1.存储巨大的文件(视频图片). 2.利用GRIDFS可以简化需求. 3.GRIDFS 利用已经建立起来的复制以 ...
- linux下php上传文件注意
linux下php上传文件注意1.修改上传目录权限linux 修改某目录下所有所有子目录权限chmod -R 777 html修改某目录为任何用户都用写读执行权限chmod a+rwx html2.设 ...