标准模板库(The Standard Template Library, STL)定义了五种迭代器。下面的图表画出了这几种:
input output
/ /
forward
|
bidirectional
|
random access
|
|
要注意,上面这图表并不是表明它们之间的继承关系:而只是描述了迭代器的种类和接口。处于图表下层的迭代器都是相对于处于图表上层迭代器的扩张集。例如:forward迭代器不但拥有input和output迭代器的所有功能,还拥有更多的功能。
各个迭代器的功能如下:
迭代器类别 | 说明 |
输入 | 从容器中读取元素。输入迭代器只能一次读入一个元素向前移动,输入迭代器只支持一遍算法,同一个输入迭代器不能两遍遍历一个序列 |
输出 | 向容器中写入元素。输出迭代器只能一次一个元素向前移动。输出迭代器只支持一遍算法,统一输出迭代器不能两次遍历一个序列 |
正向 | 组合输入迭代器和输出迭代器的功能,并保留在容器中的位置 |
双向 | 组合正向迭代器和逆向迭代器的功能,支持多遍算法 |
随机访问 | 组合双向迭代器的功能与直接访问容器中任何元素的功能,即可向前向后跳过任意个元素 |
迭代器的操作:
每种迭代器均可进行包括表中前一种迭代器可进行的操作。
迭代器操作 | 说明 |
所有迭代器 | |
p++ | 后置自增迭代器 |
++p | 前置自增迭代器 |
输入迭代器 | |
*p | 复引用迭代器,作为右值 |
p=p1 | 将一个迭代器赋给另一个迭代器 |
p==p1 | 比较迭代器的相等性 |
p!=p1 | 比较迭代器的不等性 |
输出迭代器 | |
*p | 复引用迭代器,作为左值 |
p=p1 | 将一个迭代器赋给另一个迭代器 |
正向迭代器 | 提供输入输出迭代器的所有功能 |
双向迭代器 | |
--p | 前置自减迭代器 |
p-- | 后置自减迭代器 |
随机迭代器 | |
p+=i | 将迭代器递增i位 |
p-=i | 将迭代器递减i位 |
p+i | 在p位加i位后的迭代器 |
p-i | 在p位减i位后的迭代器 |
p[i] | 返回p位元素偏离i位的元素引用 |
p | 如果迭代器p的位置在p1前,返回true,否则返回false |
p<&#61;p1 | p的位置在p1的前面或同一位置时返回true&#xff0c;否则返回false |
p>p1 | 如果迭代器p的位置在p1后&#xff0c;返回true&#xff0c;否则返回false |
p>&#61;p1 | p的位置在p1的后面或同一位置时返回true&#xff0c;否则返回false |
只有顺序容器和关联容器支持迭代器遍历&#xff0c;各容器支持的迭代器的类别如下&#xff1a;
容器 | 支持的迭代器类别 | 说明 |
vector | 随机访问 | 一种随机访问的数组类型&#xff0c;提供了对数组元素进行快速随机访问以及在序列尾部进行快速的插入和删除操作的功能。可以再需要的时候修改其自身的大小 |
deque | 随机访问 | 一种随机访问的数组类型&#xff0c;提供了序列两端快速进行插入和删除操作的功能。可以再需要的时候修改其自身的大小 |
list | 双向 | 一种不支持随机访问的数组类型&#xff0c;插入和删除所花费的时间是固定的&#xff0c;与位置无关。 |
set | 双向 | 一种随机存取的容器&#xff0c;其关键字和数据元素是同一个值。所有元素都必须具有惟一值。 |
multiset | 双向 | 一种随机存取的容器&#xff0c;其关键字和数据元素是同一个值。可以包含重复的元素。 |
map | 双向 | 一种包含成对数值的容器&#xff0c;一个值是实际数据值&#xff0c;另一个是用来寻找数据的关键字。一个特定的关键字只能与一个元素关联。 |
multimap | 双向 | 一种包含成对数值的容器&#xff0c;一个值是实际数据值&#xff0c;另一个是用来寻找数据的关键字。一个关键字可以与多个数据元素关联。 |
stack | 不支持 | 适配器容器类型&#xff0c;用vector&#xff0c;deque或list对象创建了一个先进后出容器 |
queue | 不支持 | 适配器容器类型&#xff0c;用deque或list对象创建了一个先进先出容器 |
priority_queue | 不支持 | 适配器容器类型&#xff0c;用vector或deque对象创建了一个排序队列 |
下面列举了些例子说明各个容器的用法&#xff1a;
1、vector
#include
#include
{std::vector<char> charVector;int x;for (x&#61;0; x<10; &#43;&#43;x)charVector.push_back(65 &#43; x);int size &#61; charVector.size();for (x&#61;0; x
}
2、deque
#include
#include
{std::deque<char> charDeque;int x;for (x&#61;0; x<10; &#43;&#43;x)charDeque.push_front(65 &#43; x);int size &#61; charDeque.size();for (x&#61;0; x
}
3、list
#include
#include int main()
{// Create and populate the list.int x;std::list<char> charList;for (x&#61;0; x<10; &#43;&#43;x)charList.push_front(65 &#43; x);// Display contents of list.std::cout <<"Original list: ";std::list<char>::iterator iter;for (iter &#61; charList.begin(); iter !&#61; charList.end(); iter&#43;&#43;){std::cout <<*iter;//char ch &#61; *iter;//std::cout <
}std::cout << std::endl;// Insert five Xs into the list.std::list<char>::iterator start &#61; charList.begin();charList.insert(&#43;&#43;start, 5, &#39;X&#39;);// Display the result.std::cout <<"Resultant list: ";for (iter &#61; charList.begin(); iter !&#61; charList.end(); iter&#43;&#43;){std::cout <<*iter;//char ch &#61; *iter;//std::cout <
}return 0;
}
4、set
#include
#include <set>int main()
{// Create the set object.std::set<char> charSet;// Populate the set with values.charSet.insert(&#39;E&#39;);charSet.insert(&#39;D&#39;);charSet.insert(&#39;C&#39;);charSet.insert(&#39;B&#39;);charSet.insert(&#39;A&#39;);// Display the contents of the set.std::cout <<"Contents of set: " << std::endl;std::set<char>::iterator iter;for (iter &#61; charSet.begin(); iter !&#61; charSet.end(); iter&#43;&#43;)std::cout <<*iter << std::endl;std::cout << std::endl;// Find the D.iter &#61; charSet.find(&#39;D&#39;);if (iter &#61;&#61; charSet.end())std::cout <<"Element not found.";elsestd::cout <<"Element found: " <<*iter;return 0;
}
5、multiset
#include
#include <set>int main()
{// Create the first set object.std::multiset<char> charMultiset1;// Populate the multiset with values.charMultiset1.insert(&#39;E&#39;);charMultiset1.insert(&#39;D&#39;);charMultiset1.insert(&#39;C&#39;);charMultiset1.insert(&#39;B&#39;);charMultiset1.insert(&#39;A&#39;);charMultiset1.insert(&#39;B&#39;);charMultiset1.insert(&#39;D&#39;);// Display the contents of the first multiset.std::cout <<"Contents of first multiset: " << std::endl;std::multiset<char>::iterator iter;for (iter &#61; charMultiset1.begin();iter !&#61; charMultiset1.end(); iter&#43;&#43;)std::cout <<*iter << std::endl;std::cout << std::endl;// Create the second multiset object.std::multiset<char> charMultiset2;// Populate the multiset with values.charMultiset2.insert(&#39;J&#39;);charMultiset2.insert(&#39;I&#39;);charMultiset2.insert(&#39;H&#39;);charMultiset2.insert(&#39;G&#39;);charMultiset2.insert(&#39;F&#39;);charMultiset2.insert(&#39;G&#39;);charMultiset2.insert(&#39;I&#39;);// Display the contents of the second multiset.std::cout <<"Contents of second multiset: "<< std::endl;for (iter &#61; charMultiset2.begin();iter !&#61; charMultiset2.end(); iter&#43;&#43;)std::cout <<*iter << std::endl;std::cout << std::endl;// Compare the sets.if (charMultiset1 &#61;&#61; charMultiset2)std::cout <<"set1 &#61;&#61; set2";else if (charMultiset1 < charMultiset2)std::cout <<"set1
}
6、map
#include
#include
7、multimap
#include
#include
8、stack
#include
#include
#include
{std::stack<int, std::list<int> > intStack;int x;std::cout <<"Values pushed onto stack:"<< std::endl;for (x&#61;1; x<11; &#43;&#43;x){intStack.push(x*100);std::cout <
}
9、queue
#include
#include
#include
{std::queue<int, std::list<int> > intQueue;int x;std::cout <<"Values pushed onto queue:"<< std::endl;for (x&#61;1; x<11; &#43;&#43;x){intQueue.push(x*100);std::cout <
}
10、priority_queue
#include
#include
#include
{std::priority_queue<int, std::vector<int>,std::greater<int> > intPQueue;int x;intPQueue.push(400);intPQueue.push(100);intPQueue.push(500);intPQueue.push(300);intPQueue.push(200);std::cout <<"Values removed from priority queue:"<< std::endl;int size &#61; intPQueue.size();for (x&#61;0; x
}