迭代器简介

STL为每种容器在实现的时候设计了一个内嵌的iterator类,不同的容器有自己专属的迭代器(专属迭代器负责实现对应容器访问元素的具体细节),使用迭代器来访问容器中的数据。

迭代器的实现原理

  1. //
  2. // Created by wengle on 2020-03-14.
  3. //
  4. #ifndef CPP_PRIMER_MY_LIST_H
  5. #define CPP_PRIMER_MY_LIST_H
  6. #include <iostream>
  7. template<typename T>
  8. class node {
  9. public:
  10. T value;
  11. node *next;
  12. node() : next(nullptr) {}
  13. node(T val, node *p = nullptr) : value(val), next(p) {}
  14. };
  15. template<typename T>
  16. class my_list {
  17. private:
  18. node<T> *head;
  19. node<T> *tail;
  20. int size;
  21. private:
  22. class list_iterator {
  23. private:
  24. node<T> *ptr; //指向list容器中的某个元素的指针
  25. public:
  26. list_iterator(node<T> *p = nullptr) : ptr(p) {}
  27. //重载++、--、*、->等基本操作
  28. //返回引用,方便通过*it来修改对象
  29. T &operator*() const {
  30. return ptr->value;
  31. }
  32. node<T> *operator->() const {
  33. return ptr;
  34. }
  35. list_iterator &operator++() {
  36. ptr = ptr->next;
  37. return *this;
  38. }
  39. list_iterator operator++(int) {
  40. node<T> *tmp = ptr;
  41. // this 是指向list_iterator的常量指针,因此*this就是list_iterator对象,前置++已经被重载过
  42. ++(*this);
  43. return list_iterator(tmp);
  44. }
  45. bool operator==(const list_iterator &t) const {
  46. return t.ptr == this->ptr;
  47. }
  48. bool operator!=(const list_iterator &t) const {
  49. return t.ptr != this->ptr;
  50. }
  51. };
  52. public:
  53. typedef list_iterator iterator; //类型别名
  54. my_list() {
  55. head = nullptr;
  56. tail = nullptr;
  57. size = 0;
  58. }
  59. //从链表尾部插入元素
  60. void push_back(const T &value) {
  61. if (head == nullptr) {
  62. head = new node<T>(value);
  63. tail = head;
  64. } else {
  65. tail->next = new node<T>(value);
  66. tail = tail->next;
  67. }
  68. size++;
  69. }
  70. //打印链表元素
  71. void print(std::ostream &os = std::cout) const {
  72. for (node<T> *ptr = head; ptr != tail->next; ptr = ptr->next)
  73. os << ptr->value << std::endl;
  74. }
  75. public:
  76. //操作迭代器的方法
  77. //返回链表头部指针
  78. iterator begin() const {
  79. return list_iterator(head);
  80. }
  81. //返回链表尾部指针
  82. iterator end() const {
  83. return list_iterator(tail->next);
  84. }
  85. //其它成员函数 insert/erase/emplace
  86. };
  87. #endif //CPP_PRIMER_MY_LIST_H
  1. for (my_list<student>::iterator it = l.begin(); it != l.end(); it++) {
  2. std::cout << *it << std::endl;
  3. *it = student("wengle", 18);
  4. }

迭代器存储的是一个指向list容器中的某个元素的指针,我们将各种操作符重载来达到迭代的目的,另 end 指向的是最后一个元素之后的位置。

迭代器失效

  1. #include <iostream>
  2. #include <vector>
  3. int main ()
  4. {
  5. std::vector<int> myvector (3,100);
  6. std::vector<int>::iterator it;
  7. it = myvector.begin();
  8. it = myvector.insert ( it , 200 );
  9. myvector.insert (it,200,300);
  10. //it = myvector.insert (it,200,300);
  11. myvector.insert (it,5,500); //当程序执行到这里时,大概率会crash
  12. for (std::vector<int>::iterator it2=myvector.begin(); it2<myvector.end(); it2++)
  13. std::cout << ' ' << *it2;
  14. std::cout << '\n';
  15. return 0;
  16. }

当执行完myvector.insert (it,200,300);这条语句后,实际上myvector已经申请了一块新的内存空间来存放之前已保存的数据和本次要插入的数据,由于it迭代器内部的指针还是指向旧内存空间的元素,一旦旧内存空间被释放,当执行myvector.insert (it,5,500);时就会crash.