当前位置:   article > 正文

C++初阶(十一) list

C++初阶(十一) list

一、list的介绍及使用

1.1 list的介绍

list的文档介绍

1. list是可以在常数范围内在任意位置进行插入和删除的序列式容器,并且该容器可以前后双向迭代。

2. list的底层是双向链表结构双向链表中每个元素存储在互不相关的独立节点中,在节点中通过指针指向 其前一个元素和后一个元素。

3. list与forward_list非常相似:最主要的不同在于forward_list是单链表,只能朝前迭代,已让其更简单高效。

4. 与其他的序列式容器相比(array,vector,deque),list通常在任意位置进行插入、移除元素的执行效率更好。

5. 与其他序列式容器相比,list和forward_list最大的缺陷是不支持任意位置的随机访问,比如:要访问list 的第6个元素,必须从已知的位置(比如头部或者尾部)迭代到该位置,在这段位置上迭代需要线性的时间开销;list还需要一些额外的空间,以保存每个节点的相关联信息(对于存储类型较小元素的大list来说这 可能是一个重要的因素)

 1.2 list的使用

 1.2.1. list的构造

(constructor)构造函数声明接口说明
list (size_type n, const value_type& val = value_type())构造的list中包含n个值为val的元素
list()构造空的list
list (const list& x)拷贝构造函数
list (InputIterator first, InputIterator last)用[first, last)区间中的元素构造list

 1.2.2. list iterator的使用

可暂时将迭代器理解成一个指针,该指针指向list中的某个节点。

函数声明接口说明
begin + end(重点)返回第一个元素的迭代器+返回最后一个元素下一个位置的迭代器
rbegin + rend返回第一个元素的reverse_iterator,即end位置,返回最后一个元素下一个位置的 reverse_iterator,即begin位置

 【注意】

  1. begin与end为正向迭代器,对迭代器执行++操作,迭代器向后移动
  2. rbegin(end)与rend(begin)为反向迭代器,对迭代器执行++操作,迭代器向前移动​

1.2.3. list capacity

函数声明接口说明
size返回list中有效节点的个数
empty检测list是否为空,是返回true,否则返回fals

1.2.4. list 元素访问

函数声明接口说明
front尾插
back

 1.2.5. list增删查改

函数声明接口说明
push_front在list首元素前插入值为val的元素
pop_front删除list中第一个元素
push_back在list尾部插入值为val的元素
pop_back删除list中最后一个元素
insert在list position 位置中插入值为val的元素
erase删除list position位置的元素
swap交换两个list中的元素
clear清空list中的有效元素

 list中还有一些操作,需要用到时可参阅list的文档说明。

代码演示:

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <iostream>
  3. using namespace std;
  4. #include <list>
  5. #include <vector>
  6. // list的构造
  7. void TestList1()
  8. {
  9. list<int> l1; // 构造空的l1
  10. list<int> l2(4, 100); // l2中放4个值为100的元素
  11. list<int> l3(l2.begin(), l2.end()); // 用l2的[begin(), end())左闭右开的区间构造l3
  12. list<int> l4(l3); // 用l3拷贝构造l4
  13. // 以数组为迭代器区间构造l5
  14. int array[] = { 16,2,77,29 };
  15. list<int> l5(array, array + sizeof(array) / sizeof(int)); //array + sizeof(array) / sizeof(int) 是一个指向 array 数组最后一个元素的下一个位置的指针
  16. // 列表格式初始化C++11
  17. list<int> l6{ 1,2,3,4,5 };
  18. // 用迭代器方式打印l5中的元素
  19. list<int>::iterator it = l5.begin();
  20. while (it != l5.end())
  21. {
  22. cout << *it << " "; //16 2 77 29
  23. ++it;
  24. }
  25. cout << endl;
  26. /*C++11对于标准库中的容器类型,
  27. 可以使用范围for循环来遍历其中的元素。
  28. */
  29. for (auto& e : l6)
  30. cout << e << " "; //1 2 3 4 5
  31. cout << endl;
  32. cout << "-------------------------------------------------" << endl;
  33. }
  34. // list迭代器的使用
  35. /*注意:遍历链表只能用迭代器和范围for,
  36. * 因为链表(list)是一种双向链表结构,
  37. 它的元素不是在内存中连续存储的,而是通过指针进行连接。
  38. 由于链表的元素之间没有连续的内存布局,
  39. 因此无法使用普通的索引操作来访问链表中的元素。
  40. */
  41. /*使用了 const 修饰符来表示传入的参数 l 是一个常量引用,
  42. 即不允许在函数内部修改传入的列表对象。
  43. */
  44. void PrintList(const list<int>& l)
  45. {
  46. // 注意这里调用的是list的 begin() const,返回list的const_iterator对象
  47. for (list<int>::const_iterator it = l.begin(); it != l.end(); ++it)
  48. {
  49. cout << *it << " ";
  50. // *it = 10; 编译不通过
  51. /*对于常量引用对象,
  52. 我们只能通过常量迭代器来访问容器中的元素,
  53. 这可以确保在遍历过程中不会对列表进行修改。
  54. 因此得到的是 const_iterator 对象,
  55. 不能通过这个迭代器来修改列表中的元素,
  56. 比如 *it = 10 这样的操作是不被允许的。
  57. */
  58. }
  59. cout << endl;
  60. }
  61. void TestList2()
  62. {
  63. int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
  64. list<int> l(array, array + sizeof(array) / sizeof(array[0]));
  65. // 使用正向迭代器正向list中的元素
  66. // list<int>::iterator it = l.begin(); // C++98中语法
  67. /*使用 auto 声明变量可以让编译器自动推导出变量的类型,
  68. 从而简化代码书写。还可以避免类型名重复的问题。在C++98中语法中,
  69. 声明迭代器对象时需要写出完整的类型名 list<int>::iterator 或 list<int>::reverse_iterator,
  70. 这样容易使代码变得冗长,降低代码的可读性。
  71. */
  72. auto it = l.begin(); // C++11之后推荐写法
  73. while (it != l.end())
  74. {
  75. cout << *it << " "; //1 2 3 4 5 6 7 8 9 0
  76. ++it;
  77. }
  78. cout << endl;
  79. // 使用反向迭代器逆向打印list中的元素
  80. // list<int>::reverse_iterator rit = l.rbegin();
  81. auto rit = l.rbegin();
  82. while (rit != l.rend())
  83. {
  84. cout << *rit << " "; //0 9 8 7 6 5 4 3 2 1
  85. ++rit;
  86. }
  87. cout << endl;
  88. cout << "-------------------------------------------------" << endl;
  89. }
  90. // list插入和删除
  91. // push_back/pop_back/push_front/pop_front
  92. void TestList3()
  93. {
  94. int array[] = { 1, 2, 3 };
  95. list<int> L(array, array + sizeof(array) / sizeof(array[0]));
  96. // 在list的尾部插入4,头部插入0
  97. L.push_back(4);
  98. L.push_front(0);
  99. PrintList(L); //0 1 2 3 4
  100. // 删除list尾部节点和头部节点
  101. L.pop_back();
  102. L.pop_front();
  103. PrintList(L); //1 2 3
  104. cout << "-------------------------------------------------" << endl;
  105. }
  106. // insert /erase
  107. void TestList4()
  108. {
  109. int array1[] = { 1, 2, 3 };
  110. list<int> L(array1, array1 + sizeof(array1) / sizeof(array1[0]));
  111. // 获取链表中第二个节点
  112. auto pos = ++L.begin();
  113. cout << *pos << endl; //2
  114. // 在pos前插入值为4的元素
  115. L.insert(pos, 4);
  116. PrintList(L); //1 4 2 3
  117. // 在pos前插入5个值为5的元素
  118. L.insert(pos, 5, 5);
  119. PrintList(L); //1 4 5 5 5 5 5 2 3
  120. // 在pos前插入[v.begin(), v.end)区间中的元素
  121. vector<int> v{ 7, 8, 9 };
  122. L.insert(pos, v.begin(), v.end());
  123. PrintList(L); //1 4 5 5 5 5 5 7 8 9 2 3
  124. // 删除pos位置上的元素
  125. L.erase(pos);
  126. PrintList(L); //1 4 5 5 5 5 5 7 8 9 3
  127. // 删除list中[begin, end)区间中的元素,即删除list中的所有元素
  128. L.erase(L.begin(), L.end());
  129. PrintList(L); //
  130. cout << "-------------------------------------------------" << endl;
  131. }
  132. // resize/swap/clear
  133. void TestList5()
  134. {
  135. // 用数组来构造list
  136. int array1[] = { 1, 2, 3 };
  137. list<int> l1(array1, array1 + sizeof(array1) / sizeof(array1[0]));
  138. PrintList(l1);
  139. // 交换l1和l2中的元素
  140. list<int> l2;
  141. l1.swap(l2);
  142. PrintList(l1); //
  143. PrintList(l2); //1 2 3
  144. // 将l2中的元素清空
  145. l2.clear();
  146. cout << l2.size() << endl; //0
  147. }
  148. int main()
  149. {
  150. TestList1();
  151. TestList2();
  152. TestList3();
  153. TestList4();
  154. TestList5();
  155. return 0;
  156. }

1.2.6 list的迭代器失效

大家可将迭代器暂时理解成类似于指针,迭代器失效即迭代器所指向的节点的无效,即该节 点被删除了。因为list的底层结构为带头结点的双向循环链表,因此在list中进行插入时是不会导致list的迭代器失效的,只有在删除时才会失效,并且失效的只是指向被删除节点的迭代器,其他迭代器不会受到影响

  1. void TestListIterator1()
  2. {
  3. int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
  4. list<int> l(array, array+sizeof(array)/sizeof(array[0]));
  5. auto it = l.begin();
  6. while (it != l.end())
  7. {
  8. // erase()函数执行后,it所指向的节点已被删除,因此it无效,在下一次使用it时,必须先给
  9. 其赋值
  10. l.erase(it);
  11. ++it;
  12. }
  13. }

 二、list的模拟实现

2.1 模拟实现list

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #pragma once
  3. #include <iostream>
  4. using namespace std;
  5. #include <assert.h>
  6. namespace abc {
  7. // List的节点类
  8. template<class T>
  9. struct ListNode {
  10. ListNode(const T& val = T())
  11. : _prev(nullptr)
  12. , _next(nullptr)
  13. , _val(val)
  14. {}
  15. ListNode<T>* _prev;
  16. ListNode<T>* _next;
  17. T _val;
  18. };
  19. /*
  20. List 的迭代器
  21. 迭代器有两种实现方式,具体应根据容器底层数据结构实现:
  22. 1. 原生态指针,比如:vector
  23. 2. 将原生态指针进行封装,因迭代器使用形式与指针完全相同,因此在自定义的类中必须实现以下方法:
  24. 1. 指针可以解引用,迭代器的类中必须重载operator*()
  25. 2. 指针可以通过->访问其所指空间成员,迭代器类中必须重载oprator->()
  26. 3. 指针可以++向后移动,迭代器类中必须重载operator++()与operator++(int)
  27. 至于operator--()/operator--(int)释放需要重载,根据具体的结构来抉择,双向链表可以向前 移动,所以需要重载,如果是forward_list就不需要重载--
  28. 4. 迭代器需要进行是否相等的比较,因此还需要重载operator==()与operator!=()
  29. */
  30. /*
  31. * T:表示被模板化的类型,可以是任何类型;
  32. Ref:表示一个引用类型,通常通过 T& 或 const T& 得到;
  33. Ptr:表示一个指针类型,通常通过 T* 或 const T* 得到。
  34. */
  35. template<class T, class Ref, class Ptr>
  36. class ListIterator {
  37. typedef ListNode<T> Node;
  38. typedef ListIterator<T, Ref, Ptr> Self;//<T, Ref, Ptr> 是模板参数列表,用于指定模板类的模板参数。
  39. // Ref 和 Ptr 类型需要重定义下,实现反向迭代器时需要用到
  40. public:
  41. typedef Ref Ref;
  42. typedef Ptr Ptr;
  43. public:
  44. //
  45. // 构造
  46. ListIterator(Node* node = nullptr)
  47. : _node(node)
  48. {}
  49. //
  50. // 具有指针类似行为
  51. Ref operator*() {
  52. return _node->_val;
  53. }
  54. Ptr operator->() {
  55. return &(operator*());
  56. }
  57. //
  58. // 迭代器支持移动
  59. Self& operator++() {
  60. _node = _node->_next;
  61. return *this;
  62. }
  63. Self operator++(int) {
  64. Self temp(*this);
  65. _node = _node->_next;
  66. return temp;
  67. }
  68. Self& operator--() {
  69. _node = _node->_prev;
  70. return *this;
  71. }
  72. Self operator--(int) {
  73. Self temp(*this);
  74. _node = _node->_prev;
  75. return temp;
  76. }
  77. //
  78. // 迭代器支持比较
  79. bool operator!=(const Self& l)const {
  80. return _node != l._node;
  81. }
  82. bool operator==(const Self& l)const {
  83. return _node != l._node;
  84. }
  85. Node* _node;
  86. };
  87. template<class Iterator>
  88. class ReverseListIterator {
  89. // 注意:此处typename的作用是明确告诉编译器,Ref是Iterator类中的一个类型,而不是静态成员变量
  90. // 否则编译器编译时就不知道Ref是Iterator中的类型还是静态成员变量
  91. // 因为静态成员变量也是按照 类名::静态成员变量名 的方式访问的
  92. public:
  93. typedef typename Iterator::Ref Ref;
  94. typedef typename Iterator::Ptr Ptr;
  95. typedef ReverseListIterator<Iterator> Self;
  96. public:
  97. //
  98. // 构造
  99. ReverseListIterator(Iterator it)
  100. : _it(it)
  101. {}
  102. //
  103. // 具有指针类似行为
  104. Ref operator*() {
  105. Iterator temp(_it);
  106. --temp;
  107. return *temp;
  108. }
  109. Ptr operator->() {
  110. return &(operator*());
  111. }
  112. //
  113. // 迭代器支持移动
  114. Self& operator++() {
  115. --_it;
  116. return *this;
  117. }
  118. Self operator++(int) {
  119. Self temp(*this);
  120. --_it;
  121. return temp;
  122. }
  123. Self& operator--() {
  124. ++_it;
  125. return *this;
  126. }
  127. Self operator--(int) {
  128. Self temp(*this);
  129. ++_it;
  130. return temp;
  131. }
  132. //
  133. // 迭代器支持比较
  134. /*通过将这些成员函数声明为 const,我们告诉编译器这些函数不会对对象的状态进行更改。这样做有两个主要好处:
  135. 对于用户来说,使用 const 可以传达清晰的语义,即这些函数不会修改对象的状态。
  136. 对于编译器来说,它可以强制执行不修改对象状态的约定,并且允许在 const 对象上调用这些函数。
  137. */
  138. bool operator!=(const Self& l)const {
  139. return _it != l._it;
  140. }
  141. bool operator==(const Self& l)const {
  142. return _it != l._it;
  143. }
  144. Iterator _it;
  145. };
  146. template<class T>
  147. class list {
  148. typedef ListNode<T> Node;
  149. public:
  150. // 正向迭代器
  151. /*
  152. iterator 类型适用于对非常量容器对象进行迭代操作,它返回的迭代器允许修改容器中元素的值。
  153. const_iterator 类型适用于对常量容器对象进行迭代操作,它返回的迭代器不允许修改容器中元素的值。
  154. */
  155. typedef ListIterator<T, T&, T*> iterator;
  156. typedef ListIterator<T, const T&, const T&> const_iterator;
  157. // 反向迭代器
  158. typedef ReverseListIterator<iterator> reverse_iterator;
  159. typedef ReverseListIterator<const_iterator> const_reverse_iterator;
  160. public:
  161. ///
  162. // List的构造
  163. list() {
  164. CreateHead();
  165. }
  166. list(int n, const T& value = T()) {
  167. CreateHead();
  168. for (int i = 0; i < n; ++i)
  169. push_back(value);
  170. }
  171. template <class Iterator> //表示这是一个接受任意类型 Iterator 的模板构造函数。
  172. //接受两个迭代器参数 firstlast,用来指定要初始化列表的范围。
  173. list(Iterator first, Iterator last) {
  174. CreateHead();//创建一个空的列表
  175. while (first != last) {
  176. push_back(*first);
  177. ++first;
  178. }
  179. }
  180. list(const list<T>& l) {
  181. CreateHead();
  182. // 用l中的元素构造临时的temp,然后与当前对象交换
  183. list<T> temp(l.begin(), l.end());
  184. this->swap(temp);
  185. }
  186. list<T>& operator=(list<T> l) {
  187. this->swap(l);
  188. return *this;
  189. }
  190. ~list() {
  191. clear();
  192. delete _head;
  193. _head = nullptr;
  194. }
  195. ///
  196. // List的迭代器
  197. iterator begin() {
  198. return iterator(_head->_next);
  199. }
  200. iterator end() {
  201. return iterator(_head);
  202. }
  203. /*在 C++ 中,如果一个成员函数不会修改对象的成员变量,那么可以将其声明为常量成员函数,以便在常量对象上调用。
  204. 这样做的目的是为了保证在常量对象上进行逆向遍历时,不会对对象的状态产生任何影响。
  205. */
  206. // const 关键字用于修饰成员函数的声明,表示这些成员函数是类的常量成员函数。
  207. const_iterator begin()const {
  208. return const_iterator(_head->_next);
  209. }
  210. const_iterator end()const {
  211. return const_iterator(_head);
  212. }
  213. reverse_iterator rbegin() {
  214. return reverse_iterator(end());
  215. }
  216. reverse_iterator rend() {
  217. return reverse_iterator(begin());
  218. }
  219. const_reverse_iterator rbegin()const {
  220. return const_reverse_iterator(end());
  221. }
  222. const_reverse_iterator rend()const {
  223. return const_reverse_iterator(begin());
  224. }
  225. ///
  226. // List的容量相关
  227. size_t size()const {
  228. Node* cur = _head->_next;
  229. size_t count = 0;
  230. while (cur != _head) {
  231. count++;
  232. cur = cur->_next;
  233. }
  234. return count;
  235. }
  236. bool empty()const {
  237. return _head->_next == _head;
  238. }
  239. void resize(size_t newsize, const T& data = T()) {
  240. size_t oldsize = size();
  241. if (newsize <= oldsize) {
  242. // 有效元素个数减少到newsize
  243. while (newsize < oldsize) {
  244. pop_back();
  245. oldsize--;
  246. }
  247. }
  248. else {
  249. while (oldsize < newsize) {
  250. push_back(data);
  251. oldsize++;
  252. }
  253. }
  254. }
  255. // List的元素访问操作
  256. // 注意:List不支持operator[]
  257. T& front() {
  258. return _head->_next->_val;
  259. }
  260. const T& front()const {
  261. return _head->_next->_val;
  262. }
  263. T& back() {
  264. return _head->_prev->_val;
  265. }
  266. const T& back()const {
  267. return _head->_prev->_val;
  268. }
  269. // List的插入和删除
  270. void push_back(const T& val) {
  271. insert(end(), val);
  272. }
  273. void pop_back() {
  274. erase(--end());
  275. }
  276. void push_front(const T& val) {
  277. insert(begin(), val);
  278. }
  279. void pop_front() {
  280. erase(begin());
  281. }
  282. // 在pos位置前插入值为val的节点
  283. iterator insert(iterator pos, const T& val) {
  284. Node* pNewNode = new Node(val);
  285. Node* pCur = pos._node;
  286. // 先将新节点插入
  287. pNewNode->_prev = pCur->_prev;
  288. pNewNode->_next = pCur;
  289. pNewNode->_prev->_next = pNewNode;
  290. pCur->_prev = pNewNode;
  291. return iterator(pNewNode);
  292. }
  293. // 删除pos位置的节点,返回该节点的下一个位置
  294. iterator erase(iterator pos) {
  295. // 找到待删除的节点
  296. Node* pDel = pos._node;
  297. Node* pRet = pDel->_next;
  298. // 将该节点从链表中拆下来并删除
  299. pDel->_prev->_next = pDel->_next;
  300. pDel->_next->_prev = pDel->_prev;
  301. delete pDel;
  302. return iterator(pRet);
  303. }
  304. void clear() {
  305. Node* cur = _head->_next;
  306. // 采用头删除删除
  307. while (cur != _head) {
  308. _head->_next = cur->_next;
  309. delete cur;
  310. cur = _head->_next;
  311. }
  312. _head->_next = _head->_prev = _head;
  313. }
  314. void swap(abc::list<T>& l) {
  315. std::swap(_head, l._head);
  316. }
  317. private:
  318. void CreateHead() {
  319. _head = new Node;
  320. _head->_prev = _head;
  321. _head->_next = _head;
  322. }
  323. private:
  324. Node* _head;
  325. };
  326. }
  327. ///
  328. // 对模拟实现的list进行测试
  329. // 正向打印链表
  330. //auto 用于自动推导变量的类型
  331. template<class T>
  332. void PrintList(const abc::list<T>& l) {
  333. auto it = l.begin();
  334. while (it != l.end()) {
  335. cout << *it << " ";
  336. ++it;
  337. }
  338. cout << endl;
  339. }
  340. // 测试List的构造
  341. void TestAbcList1() {
  342. abc::list<int> l1;
  343. abc::list<int> l2(10, 5);
  344. PrintList(l2);
  345. int array[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };
  346. abc::list<int> l3(array, array + sizeof(array) / sizeof(array[0]));
  347. PrintList(l3);
  348. abc::list<int> l4(l3);
  349. PrintList(l4);
  350. l1 = l4;
  351. PrintList(l1);
  352. cout << "----------------------" << endl;
  353. }
  354. // PushBack()/PopBack()/PushFront()/PopFront()
  355. void TestAbcList2() {
  356. // 测试PushBack与PopBack
  357. abc::list<int> l;
  358. l.push_back(1);
  359. l.push_back(2);
  360. l.push_back(3);
  361. PrintList(l);
  362. l.pop_back();
  363. l.pop_back();
  364. PrintList(l);
  365. l.pop_back();
  366. cout << l.size() << endl;
  367. // 测试PushFront与PopFront
  368. l.push_front(1);
  369. l.push_front(2);
  370. l.push_front(3);
  371. PrintList(l);
  372. l.pop_front();
  373. l.pop_front();
  374. PrintList(l);
  375. l.pop_front();
  376. cout << l.size() << endl;
  377. cout << "----------------------" << endl;
  378. }
  379. // 测试insert和erase
  380. void TestAbcList3() {
  381. int array[] = { 1, 2, 3, 4, 5 };
  382. abc::list<int> l(array, array + sizeof(array) / sizeof(array[0]));
  383. auto pos = l.begin();
  384. l.insert(l.begin(), 0);
  385. PrintList(l);
  386. ++pos;
  387. l.insert(pos, 2);
  388. PrintList(l);
  389. l.erase(l.begin());
  390. l.erase(pos);
  391. PrintList(l);
  392. // pos指向的节点已经被删除,pos迭代器失效
  393. cout << *pos << endl;
  394. auto it = l.begin();
  395. while (it != l.end()) {
  396. it = l.erase(it);
  397. }
  398. cout << l.size() << endl;
  399. cout << "----------------------" << endl;
  400. }
  401. // 测试反向迭代器
  402. void TestAbcList4() {
  403. int array[] = { 1, 2, 3, 4, 5 };
  404. abc::list<int> l(array, array + sizeof(array) / sizeof(array[0]));
  405. auto rit = l.rbegin();
  406. while (rit != l.rend()) {
  407. cout << *rit << " ";
  408. ++rit;
  409. }
  410. cout << endl;
  411. const abc::list<int> cl(l);
  412. auto crit = l.rbegin();
  413. while (crit != l.rend()) {
  414. cout << *crit << " ";
  415. ++crit;
  416. }
  417. cout << endl;
  418. cout << "----------------------" << endl;
  419. }
  420. int main() {
  421. TestAbcList1();
  422. TestAbcList2();
  423. TestAbcList3();
  424. TestAbcList4();
  425. return 0;
  426. }

 

2.2  list的反向迭代器

通过前面例子知道,反向迭代器的++就是正向迭代器的--,反向迭代器的--就是正向迭代器的++,因此反向迭 代器的实现可以借助正向迭代器,即:反向迭代器内部可以包含一个正向迭代器,对正向迭代器的接口进行 包装即可。

  1. #include <iostream>
  2. // 迭代器类,提供指向数组元素的迭代器
  3. class Iterator {
  4. public:
  5. // 定义引用类型Ref和指针类型Ptr
  6. typedef int& Ref;
  7. typedef int* Ptr;
  8. //构造函数,初始化_ptr为参数ptr
  9. Iterator(int* ptr) : _ptr(ptr) {}
  10. // 重载解引用操作符*,返回_ptr所指向的元素的引用
  11. Ref operator*() { return *_ptr; }
  12. // 重载箭头操作符->,返回_ptr的地址
  13. Ptr operator->() { return _ptr; }
  14. // 重载前置递增操作符++,将_ptr的值加1后返回自身的引用
  15. Iterator& operator++() {
  16. ++_ptr;
  17. return *this;
  18. }
  19. // 重载前置递减操作符--,将_ptr的值减1后返回自身的引用
  20. Iterator& operator--() {
  21. --_ptr;
  22. return *this;
  23. }
  24. // 重载不等于操作符!=,判断_ptr与other._ptr是否不相等
  25. bool operator!=(const Iterator& other) const {
  26. return _ptr != other._ptr;
  27. }
  28. // 重载等于操作符==,判断_ptr与other._ptr是否相等
  29. bool operator==(const Iterator& other) const {
  30. return _ptr == other._ptr;
  31. }
  32. private:
  33. int* _ptr; // 指向数组元素的指针
  34. };
  35. // 反向迭代器类,提供指向数组元素的反向迭代器
  36. template<class Iterator>
  37. class ReverseListIterator {
  38. // typename的作用是明确告诉编译器,Ref是Iterator类中的类型,而不是静态成员变量
  39. // 否则编译器编译时就不知道Ref是Iterator中的类型还是静态成员变量
  40. // 因为静态成员变量也是按照 类名::静态成员变量名 的方式访问的
  41. public:
  42. // typename的作用是明确告诉编译器,Ref是Iterator类中的类型,而不是静态成员变量
  43. // 否则编译器编译时就不知道Ref是Iterator中的类型还是静态成员变量
  44. // 因为静态成员变量也是按照 类名::静态成员变量名 的方式访问的
  45. //typedef作用是定义别名
  46. typedef typename Iterator::Ref Ref; // 定义Iterator的引用类型为Ref,Iterator::Ref代表了Iterator类中的引用类型,它在这里表示迭代器所指向元素的引用类型为int&
  47. typedef typename Iterator::Ptr Ptr; // 定义Iterator的指针类型为Ptr,Iterator::Ptr代表了Iterator类中的指针类型,它在这里表示迭代器所指向元素的指针类型为int*
  48. typedef ReverseListIterator<Iterator> Self; // 定义自身类型为Self
  49. public:
  50. //
  51. // 构造函数,初始化_it为参数it
  52. ReverseListIterator(Iterator it) : _it(it) {} // 初始化_it为参数it
  53. //
  54. // 具有指针类似行为
  55. // 重载解引用操作符*,返回_it所指向元素的前一个元素的引用
  56. Ref operator*() { // 重载解引用操作符*
  57. Iterator temp(_it); // 创建临时迭代器temp,初始值为_it
  58. --temp; // 对temp进行前置递减操作
  59. return *temp; // 返回temp所指向的元素的引用
  60. }
  61. Ptr operator->() { // 重载箭头操作符->
  62. return &(operator*()); // 返回operator*()的地址
  63. }
  64. //
  65. // 迭代器支持移动
  66. Self& operator++() { // 重载前置递增操作符++
  67. --_it; // 对_it进行前置递减操作
  68. return *this; // 返回自身的引用
  69. }
  70. Self operator++(int) { // 重载后置递增操作符++
  71. Self temp(*this); // 创建临时迭代器temp,初始值为*this
  72. --_it; // 对_it进行前置递减操作
  73. return temp; // 返回临时迭代器temp
  74. }
  75. Self& operator--() { // 重载前置递减操作符--
  76. ++_it; // 对_it进行前置递增操作
  77. return *this; // 返回自身的引用
  78. }
  79. Self operator--(int) { // 重载后置递减操作符--
  80. Self temp(*this); // 创建临时迭代器temp,初始值为*this
  81. ++_it; // 对_it进行前置递增操作
  82. return temp; // 返回临时迭代器temp
  83. }
  84. //
  85. // 迭代器支持比较
  86. bool operator!=(const Self& l)const { // 重载不等于操作符!=
  87. return _it != l._it; // 判断_it与l._it是否不相等
  88. }
  89. bool operator==(const Self& l)const { // 重载等于操作符==
  90. return _it == l._it; // 判断_it与l._it是否相等
  91. }
  92. Iterator _it; // 迭代器成员变量
  93. };
  94. int main() {
  95. int arr[] = { 1, 2, 3, 4, 5 };
  96. // 创建正向迭代器,指向数组的开始和结束位置
  97. Iterator begin(arr);
  98. Iterator end(arr + 5);
  99. // 创建逆向迭代器,指向数组的结束位置和开始位置
  100. ReverseListIterator<Iterator> rbegin(end);
  101. ReverseListIterator<Iterator> rend(begin);
  102. for (ReverseListIterator<Iterator> it = rbegin; it != rend; ++it) {
  103. std::cout << *it << " ";
  104. }
  105. std::cout << std::endl;
  106. return 0;
  107. }

 

三、list与vector的对比

vector与list都是STL中非常重要的序列式容器,由于两个容器的底层结构不同,导致其特性以及应用场景不 同,其主要不同如下:

vectorlist
底 层 结 构动态顺序表,一段连续空间带头结点的双向循环链表
随 机 访 问支持随机访问,访问某个元素效率O(1)不支持随机访问,访问某个元素 效率O(N)
插 入 和 删 除任意位置插入和删除效率低,需要搬移元素,时间复杂 度为O(N),插入时有可能需要增容,增容:开辟新空 间,拷贝元素,释放旧空间,导致效率更低任意位置插入和删除效率高,不 需要搬移元素,时间复杂度为 O(1)
空 间 利 用 率底层为连续空间,不容易造成内存碎片,空间利用率 高,缓存利用率高底层节点动态开辟,小节点容易 造成内存碎片,空间利用率低, 缓存利用率低
迭 代 器原生态指针对原生态指针(节点指针)进行封装
迭 代 器 失 效在插入元素时,要给所有的迭代器重新赋值,因为插入 元素有可能会导致重新扩容,致使原来迭代器失效,删 除时,当前迭代器需要重新赋值否则会失效插入元素不会导致迭代器失效, 删除元素时,只会导致当前迭代 器失效,其他迭代器不受影响
使 用 场 景需要高效存储,支持随机访问,不关心插入删除效率大量插入和删除操作,不关心随机访问

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/112267
推荐阅读
相关标签
  

闽ICP备14008679号