【C++】list模拟实现+反向迭代器

list模拟实现

  • list定义
  • list用法
    • list iterator的使用
      • begin() + end()
      • rbegin()+rend()
    • reverse()
    • sort()
    • merge()
    • unique()
    • remove()
    • splice()
  • list模拟实现
    • struct和class的区别
    • list三个类模板
    • 默认成员函数
      • 构造函数
      • 拷贝构造函数
      • 赋值运算符重载
      • 析构函数
    • 数据修改操作
      • push_back()
      • push_front()
      • pop_back()
      • pop_front()
      • swap()
      • clear()
      • insert()
      • erase()
    • 容量操作
      • size
      • empty
    • 数据访问操作
      • front()
      • back()
    • 迭代器
      • 正向迭代器
        • 构造函数
        • begin() + end()
        • const_iterator begin()/end()const
        • operator*()
        • operator->()
        • operator!=()
        • operator==()
        • 前置++和后置++
        • 前置--和后置--
      • 反向迭代器
        • 定义
        • 构造函数
        • rbegin() + rend()
        • const_reverse_iterator rbegin()/rend()const
        • operator*()
        • operator->()
        • operator!=()
        • operator==()
        • 前置++和后置++
        • 前置--和后置--
  • list模拟实现总代码

铁汁们,今天给大家分享一篇list模拟实现+反向迭代器,来吧,开造⛳️

list定义

💡 list< typename> name ;

  • list底层是带头双向循环链表结构,且该容器可以前后双向迭代。

  • 双向链表中每个元素存储互不相关的独立节点,在结点中通过指针访问其前一个元素和后一个元素。

  • list允许在任意位置进行插入和删除操作,时间复杂度为O(1),时间效率高。

  • list不支持任意位置的随即访问,若想要访问某个位置,必须从已知的位置(头部或者尾部)迭代到该位置,时间开销为O(n)。

  • list需要额外的空间开销,用来保存每个节点的相关联信息。

  • typename为任意类型,例如:int、char、double、string、vector。
    在这里插入图片描述

list用法

list iterator的使用

begin() + end()

💡iterator begin( )、const_iterator begin( )const ;

  • 功能:返回第一个元素的位置(迭代器)。

Tips:const_iterator表示对迭代器进行解引用后的值(*it)不能被修改,而迭代器本身(it)可以被修改。const修饰this指针,表示在该成员函数中成员变量不允许被修改,此处const的用法只能用于类中的成员函数。

💡iterator end( )、const_iterator end( )const ;

  • 功能:返回最后一个元素的下一个位置(迭代器)。

rbegin()+rend()

💡iterator begin( )、const_iterator rbegin( )const ;

  • 功能:返回第一个元素的前一个位置(迭代器)。

💡iterator rend( )、const_iterator rend( )const ;

  • 功能:返回第一个元素的位置(迭代器)。
    在这里插入图片描述

reverse()

💡 void reverse( ) ;

  • 功能 : 逆置,将list中元素的顺序进行颠倒 。

sort()

💡 void sort( ) ;

  • 功能:排序,默认为升序。模板参数中的默认仿函数为less。

Tips:list中的sort为归并排序,算法库中的sort为快排。

#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<list>using namespace std;int main()
{list<int> lt1;lt1.push_back(4);lt1.push_back(1);lt1.push_back(3);lt1.push_back(2);lt1.sort();for (auto& e : lt1){cout << e << ' ';}cout << endl;return 0;
}

在这里插入图片描述

merge()

💡void merge(list& lt) ;

  • 功能:将两个已经有序的链表进行合并,默认为升序 。
#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<list>using namespace std;int main()
{list<int> lt1;lt1.push_back(4);lt1.push_back(1);lt1.push_back(3);lt1.push_back(2);list<int> lt2;lt2.push_back(9);lt2.push_back(7);lt2.push_back(10);lt2.push_back(8);lt1.sort();lt2.sort();lt1.merge(lt2);for (auto& e : lt1){cout << e << ' ';}cout << endl;for (auto& e : lt2){cout << e << ' ';}cout << endl;return 0;
}

在这里插入图片描述

unique()

💡 void unique( ) ;

  • 功能:去重,将链表中连续相等的元素组中删除除第一个元素外的所有元素。
#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<list>using namespace std;int main()
{list<int> lt1;lt1.push_back(4);lt1.push_back(4);lt1.push_back(4);lt1.push_back(1);lt1.push_back(3);lt1.push_back(3);lt1.push_back(2);lt1.push_back(4);lt1.push_back(4);for (auto& e : lt1){cout << e << ' ';}cout << endl;lt1.unique();for (auto& e : lt1){cout << e << ' ';}cout << endl;return 0;
}

在这里插入图片描述

remove()

💡 void remove(const T& val) ;

  • 功能:去除,将链表中值为val的元素删除。
#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<list>using namespace std;int main()
{list<int> lt1;lt1.push_back(4);lt1.push_back(1);lt1.push_back(3);lt1.push_back(2);for (auto& e : lt1){cout << e << ' ';}cout << endl;lt1.remove(4);for (auto& e : lt1){cout << e << ' ';}cout << endl;return 0;
}

在这里插入图片描述

splice()

💡 void splice(iterator position , list& lt) ;

  • 功能 :将容器lt中所有的元素转移到容器中指定位置(迭代器)的前面,容器lt的大小为0。
#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<list>using namespace std;int main()
{list<int> lt1;lt1.push_back(1);lt1.push_back(2);lt1.push_back(3);list<int> lt2(3, 2);for (auto& e : lt1){cout << e << ' ';}cout << endl;for (auto& e : lt2){cout << e << ' ';}cout << endl;lt1.splice(lt1.begin(), lt2);for (auto& e : lt1){cout << e << ' ';}cout << endl;for (auto& e : lt2){cout << e << ' ';}cout << endl;return 0;
}

在这里插入图片描述

💡 void splice(iterator position , list& lt , iterator i ) ;

  • 功能:将容器lt中迭代器i指向的节点转移到容器中指定位置(迭代器)的前面,容器lt的大小减一。
#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<list>using namespace std;int main()
{list<int> lt1;lt1.push_back(1);lt1.push_back(2);lt1.push_back(3);list<int> lt2;lt2.push_back(10);lt2.push_back(11);lt2.push_back(12);for (auto& e : lt1){cout << e << ' ';}cout << endl;for (auto& e : lt2){cout << e << ' ';}cout << endl;lt1.splice(lt1.begin(), lt2, ++lt2.begin());for (auto& e : lt1){cout << e << ' ';}cout << endl;for (auto& e : lt2){cout << e << ' ';}cout << endl;return 0;
}

在这里插入图片描述

💡 void splice(iterator position , list& lt , iterator first , iterator last ) ;

  • 功能:将容器lt中[first, last)范围中的元素转移到容器中指定位置(迭代器)的前面。
#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<list>using namespace std;int main()
{list<int> lt1;lt1.push_back(1);lt1.push_back(2);lt1.push_back(3);list<int> lt2;lt2.push_back(10);lt2.push_back(11);lt2.push_back(12);lt2.push_back(13);for (auto& e : lt1){cout << e << ' ';}cout << endl;for (auto& e : lt2){cout << e << ' ';}cout << endl;lt1.splice(lt1.begin(), lt2, ++lt2.begin(),--lt2.end());for (auto& e : lt1){cout << e << ' ';}cout << endl;for (auto& e : lt2){cout << e << ' ';}cout << endl;return 0;
}

在这里插入图片描述

list模拟实现

struct和class的区别

  • 在c++中,struct和class都可以定义类,但两者默认的访问权限(即在变量或函数定义处不写访问限定符)不同,struct默认访问权限为public(为了兼容c),class默认访问权限为private。
  • 访问限定符有三种,分别为public、private、protect。public修饰的变量或函数在类外可以通过类名+域作用限定符或者 类对象 + . 进行访问,protect、private修饰的变量或函数在类外不可以进行访问。

list三个类模板

  • Tips : list本质为带头双向循环链表,模拟实现list,要实现以下三个类:模拟实现节点的类、模拟实现带头双向循环链表结构的类、模拟实现迭代器的类。
template<class T>  //节点 
struct ListNode {  //struct类未用访问限定符修饰的变量为public,在类外指定类域就可以直接进行访问ListNode* _prev;  //带头双向循环链表ListNode* _next;T _data;
}template<class T> //链表-带头双向循环链表,存储的元素为节点
class list {   //class类未用访问限定符修饰的变量为private,在类外不可以访问
public:typedef ListNode<T> Node; //为了符合规范,需要将迭代器的类型typedef为iteratortypedef list_iterator<T, T&, T*> iterator;   //非consttypedef list_iterator<T, const T&, const T*> const_iterator;  //constNode* _head; //头指针,该指针指向的节点为头节点,不存储任何有效数据//头节点中的_data不能存储后面节点的总个数,原因:若T为char型,数据个数过大,会数据溢出
}template<class T, class Ref, class Ptr>  //迭代器  Ref(T、const T)、Ptr(T*、const T*):*、->的返回值是否被修改,根据实际清况而定
struct list_iterator { typedef ListNode<T> Node;  //节点typedef list_iterator<T, Ref, Ptr> Self; //迭代器类型Node* _node; //节点指针
}

在这里插入图片描述

list<int> lt1(2, 10);
lt1.push_back(3);
lt1.push_back(2);
lt1.push_back(1);zzx::list<int>::iterator it1 = lt1.begin();
while (it1 != lt1.end())
{cout << *it1 << ' ';it1++;
}
cout << endl;const list<int> lt2(lt1.begin(), --lt1.end());zzx::list<int>::const_iterator it2 = lt2.begin();
while (it2 != lt2.end())
{cout << *it2 << ' ';it2++;
}
cout << endl;

在这里插入图片描述

默认成员函数

构造函数

void CreatHead() //创造带头双向循环链表结构
{_head = new Node;_head->_prev = _head;_head->_next = _head;
}
  • 构造函数有很多种,但都需要先创造出带头双向循环链表结构,会造成代码冗余,增加了代码量和复杂性,为了解决这个问题,就将此板块的代码实现定义在CreatHead()函数体内。

💡list( ) { } ;

  • 功能:构造无参的对象。
list() //无参构造
{CreatHead();
}

💡list(size_t n, const T& val = T( ) ) ;

  • 功能:构造含n个val值的对象。
list(size_t n, const T& val) //用n个val值构造
{CreatHead();for (int i = 0; i < n; i++){push_back(val);}
}
list(int n, const T& val)  //为了防止出现“非法间接寻址”错误
{CreatHead();for (int i = 0; i < n; i++){push_back(val);}
}

Tips: 因为模板参数的匹配原则,会出现防止“非法间接寻址”错误。

💡list( InputIterator first, InputIterator last ) ;

  • 功能:构造与[first, last)范围一样多元素的对象。
template<class InputIterator>  //  注意:模板内可以在嵌套模板
list(InputIterator first, InputIterator last)  //用迭代区间进行构造
{CreatHead();while (first != last){push_back(*first);++first;}
}

拷贝构造函数

💡list(const list& v) ;

  • 功能:用一个已经存在的对象创建新的对象,两对象中的值相同。
list(const list& lt) //拷贝构造函数,深拷贝-》浅拷贝,指向同一块空间,析构两次
{CreatHead();for (auto& e : lt){push_back(e);}
}

Tips : 深拷贝,否则会造成指向同一块空间,被析构两次。

list<int> lt1(5, 2); // 先构造的对象后析构	
list<int> lt2 = lt1; //编译器会优化,构造 + 拷贝 - 》构造,默认拷贝构造为值拷贝
lt1.push_back(1);for (auto& e : lt1)
{cout << e << ' ';
}
cout << endl;for (auto& e : lt2)
{cout << e << ' ';
}
cout << endl;

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

赋值运算符重载

💡list& operator=(list v) ;

  • 功能:赋值,两对象已经存在。
list<T>& operator=(list lt)  //赋值运算符
{swap(lt);return *this;
}

Tips : 深拷贝,否则会造成指向同一块空间,被析构两次。

析构函数

💡~vector( ) { } ;

  • 功能:将列表中的元素全部删除(销毁),并链表结构也被销毁。
~list() //析构函数
{clear();delete _head;  //_head = nullptr;
}

数据修改操作

push_back()

💡void push_back(const T& val) ;

  • 功能:尾插。
void push_back(const T& val) //尾插
{/*传统写法Node* newnode = new Node(val);Node* tail = _head->_prev;tail->_next = newnode;newnode->_prev = tail;newnode->_next = _head;_head->_prev = newnode;*/insert(end(), val);
}

push_front()

💡void push_front(const T& val) ;

  • 功能:头插。
void push_front(const T& val) //头插
{insert(begin(), val);
}

pop_back()

💡void pop_back( ) ;

  • 功能:尾删。
void pop_back()  //尾删
{erase(--end());
}

pop_front()

💡void pop_front( ) ;

  • 功能:头删。
void pop_front()  //头删
{erase(begin());
}

swap()

💡void swap(list& lt) ;

  • 功能:交换。
void swap(list<T>& lt) //交换
{std::swap(_head, lt._head);
}

clear()

💡void clear( ) ;

  • 功能:从列表容器中删除所有元素(已销毁),并使容器的大小为0,但带头双向链表结构仍在。
void clear()  //清空链表中的节点,哨兵位头节点除外,带头双向循环链表结构未被破坏
{iterator it = begin();while (it != end()){it = erase(it);}
}

insert()

💡void insert(iterator position , const T& val) ;

  • 功能:在指定的位置(迭代器)前插入元素x。
/*insert中迭代器不会失效原因:未扩容未引起底层空间发生变化,position迭代器未发生变化,仍指向了正确的位置,即使在使用此迭代器仍可以完成insert*/
iterator insert(iterator position, const T& val)
{Node* newnode = new Node(val);Node* cur = position._node;  //struct中public变量访问可以 对象.变量名Node* prev = cur->_prev;prev->_next = newnode;newnode->_prev = prev;newnode->_next = cur;cur->_prev = newnode;return newnode;  //有返回值,与erase匹配}
  • nsert为了与erase匹配,有返回值 ,返回一个指向 新插入 的元素节点的迭代器。
  • Tips : insert中迭代器不会失效 。原因 : 未扩容未引起底层空间发生变化,position迭代器未发生变化,仍指向了正确的位置,即使在使用此迭代器仍可以完成insert。

在这里插入图片描述

erase()

💡iterator erase(iterator pos) ;

  • 功能: 删除指定位置(迭代器)处的值。
//erase中迭代器会失效,原因:position迭代器被delete了,此迭代器不能在被使用了
iterator erase(iterator position)
{assert(position != end());  //断言,防止删除哨兵位头节点Node* cur = position._node;Node* prev = cur->_prev;Node* next = cur->_next;prev->_next = next;next->_prev = prev;delete cur;  //cur = nullptr;return next;  //返回删除节点的下一个节点
}
  • Tips : erase中迭代器会失效 ,原因 :position迭代器被delete了,此迭代器不能在被使用了,但其他迭代器不受影响,仍然可以正常被使用。
  • erase为了防止迭代器失效,有返回值 ,返回一个指向要删除节点的下一个节点的迭代器。
  • delete cur :delete->析构+free , 因为对象里面(节点)进行了资源申请,要调用析构函数,进行资源销毁,在调用free将对象(指针)的空间进行销毁。
    在这里插入图片描述

容量操作

size

💡size_t size( )const ;

  • 功能:计算元素的总个数。
size_t size()const
{size_t count = 0;for (auto const& e : *this){count++;}return count;
}
  • const对象以及非const对象均可以调用const成员函数,原因:权限不能放大(const对象不能调用非const成员函数)。const对象->权限平移,非const对象->权限缩小。

empty

💡bool empty( )const ;

  • 功能:判断list中是否存在元素,为空,则返回true,不为空,则返回false。
bool empty()const
{return size() == 0;
}

数据访问操作

front()

💡T& front( ) ;

  • 功能:返回第一个节点中的元素。
T& front()
{return _head->_next->_data;
}
const T& front()const
{return _head->_next->_data;
}

back()

💡T& back( ) ;

  • 功能:返回最后一个节点中的元素。
T& back()
{return _head->_prev->_data;
}
const T& back()const
{return _head->_prev->_data;
}

迭代器

正向迭代器

template<class T, class Ref, class Ptr>  //迭代器  Ref(T、const T)、Ptr(T*、const T*):*、->的返回值是否被修改,根据实际清况而定
struct list_iterator { typedef ListNode<T> Node;  //节点typedef list_iterator<T, Ref, Ptr> Self; //迭代器类型Node* _node; //节点指针
}
list<int> lt1;
lt1.push_back(1);
lt1.push_back(2);
lt1.push_back(3);//it1: 内置类型
ListNode<int>* it1 = lt1._head->_next;  
//it2:自定义类型
list<int>::iterator it2 = lt1.begin();/*尽管it1和it2的值是相同的,但进行++操作时,
编译器将it1当作内置类型(由语言标准指定的)进行处理,*表示取其指向空间中的值,++表示向后走sizeof(类型)的步长
it2为自定义类型,去调用operator*()、operator++()运算符*/
*it1;
++it1;*it2;
++it2;
cout << sizeof(it1) << endl;
cout << sizeof(it2) << endl;

在这里插入图片描述
在这里插入图片描述

  • 提供统一的方式进行访问和修改,摒弃了底层的细节,使容器进行访问和修改更加容易。
  • 底层为原生指针 ,因为list底层结构为链表,物理空间是不连续的,需要运算符重载,而重载运算符需要是自定义类型,指针为内置类型,所以对指针进行了封装list_iterator。
  • 为了符合规范,需要typedef将迭代器类型命名为iterator。

Tips :将模拟实现迭代器的类定义为struct类,且指针_node默认访问权限为public, 原因:list类中的insert、erase,position类型为迭代器,为了类型要匹配(node*),则在类外用迭代器._node进行访问,否则在类外就访问不到_node。

💡不用显示写析构函数,原因:若显示写了,则表示是把该指针指向的节点一并删除,此处并不希望删除链表中的节点,默认生成的析构函数对内置类型不做处理。
未进行资源申请。

💡不用显示写拷贝构造函数,默认生成的拷贝构造函数进行值拷贝,尽管两个指针指向同一块空间,一个指针被销毁,会去调用析构函数,因未显示写析构函数,析构函数对内置类型不做处理,指针变量会被销毁,系统将其回收了,但该指针变量指向的节点还在;

构造函数

💡list_iterator(Node* node = nullptr) ;

list_iterator(Node* node = nullptr) //单参数构造函数支持隐式类型转换 Node*->iterator:_node(node)
{ }

Tips : 单参数构造函数支持隐式类型转换 Node*->iterator 。

begin() + end()

💡iterator begin( ) ;

  • 功能:返回第一个元素的位置(迭代器)。

Tips:list对象为非const对象,就调用begin()、end(),list为const对象,就调用const_iterator begin()const、const_iterator end()const。

iterator begin()   //list对象为非const对象
{return _head->_next;  //单参数构造函数支持隐式类型转换
}

💡iterator end( ) ;

  • 功能:返回最后一个元素的下一个位置(迭代器)。
iterator end()
{return _head;
}
const_iterator begin()/end()const

💡const_iterator begin( )const ;

Tips : const_iterator表示对迭代器解引用(*)的值不可以被修改,而迭代器本身可以被修改,const修饰类成员函数,实际修饰该成员函数隐含的this指针,表明在该成员函数中不能对类的任何成员进行修改。

/*const_iterator表示* 迭代器的值不可以被修改,而迭代器本身可以被修改,const修饰类成员函数,实际修饰该成员函数隐含的this指针,表明在该成员函数中不能对类的任何成员进行修改 */
const_iterator begin()const   //list对象为const对象, const对象才能调用const成员函数
{return _head->_next;  //单参数构造函数支持隐式类型转换
}

💡const_iterator end( )const ;

const_iterator end()const
{return _head;
}
operator*()

💡Ref operator*( ) ;

/*oprator*()不用const,原因:iterator普通迭代器调用普通成员函数,const_iterator中迭代器为非const对象,指向的内容可以被修改*/
Ref operator*() //只有返回值类型不一致-》模板参数
{return _node->_data;
}
  • const_iterator、iterator区别就在与,const_iterator返回值只可读不可以修改(constT&),iterator返回值既可读又可以修改(T&),两者只是返回值类型不同,可以将其定义为模板参数,因为模板参数修饰的是类型。
operator->()

💡Ptr operator->( ) ;

Ptr operator->() //结构体指针,_data为结构体,*it只能取到结构体(自定义类型),若需要cout<<*it,则需要重载<<
{//特殊处理,为了可读性,省略了一个 ->return &_node->_data; //it->_a1 -》 it.operator->()->_a1
}
struct AA{  int _a1;int _a2;AA(int a1 = 1, int a2 = 2):_a1(a1),_a2(a2){ }
};
list<AA> lt4; 
lt4.push_back(AA()); //AA()为匿名对象
lt4.push_back(AA(10, 20));
zzx::list<AA>::iterator it2 = lt4.begin();
while (it2 != lt4.end())
{cout << it2->_a1 << ":" << it2->_a2 << endl;++it2;
}
cout << endl;

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

operator!=()

💡bool operator!=(const Self& tmp) ;

bool operator!=(const Self& tmp)
{return _node != tmp._node;  //指针为内置类型,可以直接进行比较
}
operator==()

💡bool operator==(const Self& tmp) ;

bool operator==(const Self& tmp)
{return _node == tmp._node;
}
前置++和后置++

💡Self& operator++( ) ;

Self& operator++() //前置++
{_node = _node->_next;return *this;  //引用返回,出了作用域,*this还在,提高返回效率
}

💡Self operator++(int) ;

Self operator++(int)  //后置++
{Self tmp(*this);_node = _node->_next;return tmp;  //传值返回,出了作用域,tmp就被销毁
}
  • 前置++的效率高于后置++,因为前置的++没有生成额外的对象,意味着不需要过多的内存,也就是不需要在栈上开辟额外的空间。而后置的++需要在栈上额外创建对象,占用栈空间,返回后就要调用析构函数。
  • 为了与前置++区分,C++规定:后置++重载时多增加一个int类型的参数,但调用函数时该参数不用传递,由编译器自动传递。
前置–和后置–

💡Self& operator–( ) ;

Self& operator--() //前置--
{_node = _node->_prev;return *this;  //引用返回,出了作用域,*this还在,提高返回效率
}

💡Self operator–(int) ;

Self operator--(int)  //后置--
{Self tmp(*this);_node = _node->_prev;return tmp;  //传值返回,出了作用域,tmp就被销毁
}

反向迭代器

定义
  • 正向迭代器为begin()、end(),反向迭代器为rbegin()、rend()。
  • 反向迭代器的++就是正向迭代器的–,反向迭代器的–就是正向迭代器的++,所以反向迭代器的实现可以借助于正向迭代器来实现,将正向迭代器转换为反向迭代器,即:迭代器适配器。
  • 迭代器适配器:给了我任何容器的正向迭代器,就可以适配出该容器的反向迭代器。将正向迭代器的类型定义为类模板,在反向迭代器中根据类模板参数定义正向迭代器对象,反向迭代器各接口的实现均通过调用正向迭代器的接口来实现。
    在这里插入图片描述
构造函数

💡list_reverse_iterator(iterator cur) ;

//正向迭代器封装了Node*指针,其构造函数参数为Node*,反向迭代器封装了iterator,其构造函数参数为iterator
list_reverse_iterator(iterator cur) //构造函数:_cur(cur)  //单参数构造函数支持隐式类型转换 iterator-》reverse_iterator
{ }
  • 单参数构造函数支持隐式类型转换 iterator-》reverse_iterator。
  • 正向迭代器封装了Node指针,其构造函数参数为Node,反向迭代器封装了iterator,其构造函数参数为iterator。
rbegin() + rend()

💡reverse_iterator rbegin( ) ;

  • 功能:返回第一个元素的前一个位置(迭代器)。
reverse_iterator rbegin() //非const对象
{return end();
}

💡reverse_iterator rend( ) ;

  • 功能:返回第一个元素的位置(迭代器)。
reverse_iterator rend()
{return begin();
}
const_reverse_iterator rbegin()/rend()const

💡const_reverse_iterator rbegin( )const ;

const_reverse_iterator rbegin()const //const对象
{return end();
}

💡const_reverse_iterator rend( )const ;

const_reverse_iterator rend()const
{return begin();
}
operator*()

💡Ref operator*( ) ;

Ref operator*() //只是取其所指向的节点中的值,指针的值并未发生变化
{  //rbegin()=end()、rend()=begin()iterator tmp = _cur; --tmp;    return *tmp;
}

在这里插入图片描述

operator->()

💡Ptr operator->( ) ;

//正向迭代器operator->()是返回结构体的地址(结构体指针)
Ptr operator->()  //结构体指针
{return &(operator*());
}
  • 与正向迭代器的实现相同,正向迭代器operator->()是返回节点值(结构体)的地址(结构体指针),反向迭代器的operator*()返回的是节点的值。
operator!=()

💡bool operator!=(const Self& s) ;

bool operator!=(const Self& s) 
{return _cur != s._cur;
}
operator==()

💡bool operator==(const Self& s) ;

bool operator==(const Self& s)
{return _cur == s._cur;
}
前置++和后置++

在这里插入图片描述

💡Self& operator++( ) ;

Self& operator++() //前置++
{ --_cur;  //正向迭代器往前走return *this;
}

💡Self operator++(int) ;

Self operator++(int) //后置++
{Self tmp = *this;--_cur;return tmp;
}
前置–和后置–

💡Self& operator–( ) ;

Self& operator--()  //前置--
{++_cur;  //正向迭代器往后走return *this;
}

💡Self operator–(int) ;

Self operator--(int) //后置--
{Self tmp = *this;++_cur;return tmp;
}

list模拟实现总代码

#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<assert.h>
#include<list>#include"Reserve_Iterator.h"using namespace std;namespace zzx {struct AA{  int _a1;int _a2;AA(int a1 = 1, int a2 = 2):_a1(a1),_a2(a2){ }};template<class T>  //节点 struct ListNode {  //struct类未用访问限定符修饰的变量为public,在类外指定类域就可以直接进行访问ListNode* _prev;  //带头双向循环链表ListNode* _next;T _data;ListNode(const T& val = T()) //缺省值-》防止无参调用,因无默认构造函数,又显示写了构造函数,编译器会报错:_prev(nullptr),_next(nullptr),_data(val){ }};/*迭代器:1.提供统一的方式进行访问和修改,摒弃了底层的细节,使容器进行访问和修改更加容易;*        2.底层为原生指针,因为list底层结构为链表,物理空间是不连续的,需要运算符重载,而重载运算符需要是自定义类型,指针为内置类型,*        所以对指针进行了封装list_iterator;*        3.为了符合规范,需要typedef将迭代器类型命名为iterator*/template<class T, class Ref, class Ptr>  //迭代器  Ref(T、const T)、Ptr(T*、const T*):*、->的返回值是否被修改,根据实际清况而定struct list_iterator { typedef ListNode<T> Node;  //节点typedef list_iterator<T, Ref, Ptr> Self; //迭代器类型Node* _node; //节点指针/*不用显示写析构函数,原因:若显示写了,则表示是把该指针指向的节点一并删除,此处并不希望删除链表中的节点,默认生成的析构函数对内置类型不做处理。 未进行资源申请;不用显示写拷贝构造函数,默认生成的拷贝构造函数进行值拷贝,尽管两个指针指向同一块空间,一个指针被销毁,会去调用析构函数,因未显示写析构函数,析构函数对内置类型不做处理,指针变量会被销毁,系统将其回收了,但该指针变量指向的节点还在;*/list_iterator(Node* node = nullptr) //单参数构造函数支持隐式类型转换 Node*->iterator:_node(node){ }Ptr operator->() //结构体指针,_data为结构体,*it只能取到结构体(自定义类型),若需要cout<<*it,则需要重载<<{//特殊处理,为了可读性,省略了一个 ->return &_node->_data; //it->_a1 -》 it.operator->()->_a1}/*oprator*()不用const,原因:iterator普通迭代器调用普通成员函数,const_iterator中迭代器为非const对象,指向的内容可以被修改*/Ref operator*() //只有返回值类型不一致-》模板参数{return _node->_data;}Self& operator++() //前置++{_node = _node->_next;return *this;  //引用返回,出了作用域,*this还在,提高返回效率}Self operator++(int)  //后置++{Self tmp(*this);_node = _node->_next;return tmp;  //传值返回,出了作用域,tmp就被销毁}Self& operator--() //前置--{_node = _node->_prev;return *this;  //引用返回,出了作用域,*this还在,提高返回效率}Self operator--(int)  //后置--{Self tmp(*this);_node = _node->_prev;return tmp;  //传值返回,出了作用域,tmp就被销毁}bool operator!=(const Self& tmp){return _node != tmp._node;  //指针为内置类型,可以直接进行比较}bool operator==(const Self& tmp){return _node == tmp._node;}};template<class iterator, class Ref, class Ptr>  //反向迭代器:通过正向迭代器转换而来(迭代器适配器)struct list_reverse_iterator {iterator _cur;  //迭代器适配器typedef list_reverse_iterator<iterator, Ref, Ptr> Self;//正向迭代器封装了Node*指针,其构造函数参数为Node*,反向迭代器封装了iterator,其构造函数参数为iteratorlist_reverse_iterator(iterator cur) //构造函数:_cur(cur)  //单参数构造函数支持隐式类型转换 iterator-》reverse_iterator{ }Ref operator*() //只是取其所指向的节点中的值,指针的值并未发生变化{  //rbegin()=end()、rend()=begin()iterator tmp = _cur;--tmp;return *tmp;}Self& operator++() //前置++{--_cur;  //正向迭代器往前走return *this;}Self operator++(int) //后置++{Self tmp = *this;--_cur;return tmp;}Self& operator--()  //前置--{++_cur;  //正向迭代器往后走return *this;}	Self operator--(int) //后置--{Self tmp = *this;++_cur;return tmp;}//正向迭代器operator->()是返回结构体的地址(结构体指针)Ptr operator->()  //结构体指针{return &(operator*());}bool operator!=(const Self& s){return _cur != s._cur;}bool operator==(const Self& s){return _cur == s._cur;}};template<class T> //链表-带头双向循环链表,存储的元素为节点class list {   //class类未用访问限定符修饰的变量为private,在类外不可以访问public:typedef ListNode<T> Node; //为了符合规范,需要将迭代器的类型typedef为iteratortypedef list_iterator<T, T&, T*> iterator;   // 正向迭代器 、非consttypedef list_iterator<T, const T&, const T*> const_iterator;  //consttypedef list_reverse_iterator<iterator, T&, T*> reverse_iterator;  // 反向迭代器 、非consttypedef list_reverse_iterator<const_iterator, const T&, const T*> const_reverse_iterator; //const//正向迭代器iterator begin()   //list对象为非const对象{return _head->_next;  //单参数构造函数支持隐式类型转换}iterator end(){return _head;}/*const_iterator表示* 迭代器的值不可以被修改,而迭代器本身可以被修改,const修饰类成员函数,实际修饰该成员函数隐含的this指针,表明在该成员函数中不能对类的任何成员进行修改 */const_iterator begin()const   //list对象为const对象, const对象才能调用const成员函数{return _head->_next;  //单参数构造函数支持隐式类型转换}const_iterator end()const{return _head;}//反向迭代器reverse_iterator rbegin(){return end();}reverse_iterator rend(){return begin();}const_reverse_iterator rbegin()const{return end();}const_reverse_iterator rend()const{return begin();}void CreatHead() //创造带头双向循环链表结构{_head = new Node;_head->_prev = _head;_head->_next = _head;}//构造函数list() //无参构造{CreatHead();}list(size_t n, const T& val) //用n个val值构造{CreatHead();for (int i = 0; i < n; i++){push_back(val);}}list(int n, const T& val)  //为了防止出现“非法间接寻址”错误{CreatHead();for (int i = 0; i < n; i++){push_back(val);}}template<class InputIterator>  //  注意: 模板内可以在嵌套模板list(InputIterator first, InputIterator last)  //用迭代区间进行构造{CreatHead();while (first != last){push_back(*first);++first;}}list(const list& lt) //拷贝构造函数,深拷贝-》浅拷贝,指向同一块空间,析构两次{CreatHead();for (auto& e : lt){push_back(e);}}list<T>& operator=(list lt)  //赋值运算符{swap(lt);return *this;}~list()  //析构函数{clear();delete _head;  //_head = nullptr;}//修改void swap(list<T>& lt) //交换{std::swap(_head, lt._head);}void clear()  //清空链表中的节点,哨兵位头节点除外,带头双向循环链表结构未被破坏{iterator it = begin();while (it != end()){it = erase(it);}}void push_back(const T& val) //尾插{/*传统写法Node* newnode = new Node(val);Node* tail = _head->_prev;tail->_next = newnode;newnode->_prev = tail;newnode->_next = _head;_head->_prev = newnode;*/insert(end(), val);}void push_front(const T& val) //头插{insert(begin(), val);}void pop_back()  //尾删{erase(--end());}void pop_front()  //头删{erase(begin());}/*insert中迭代器不会失效原因:未扩容未引起底层空间发生变化,position迭代器未发生变化,仍指向了正确的位置,即使在使用此迭代器仍可以完成insert*/iterator insert(iterator position, const T& val){Node* newnode = new Node(val);Node* cur = position._node;  //struct中public变量访问可以 对象.变量名Node* prev = cur->_prev;prev->_next = newnode;newnode->_prev = prev;newnode->_next = cur;cur->_prev = newnode;return newnode;  //有返回值,与erase匹配}//erase中迭代器会失效,原因:position迭代器被delete了,此迭代器不能在被使用了iterator erase(iterator position){assert(position != end());  //断言,防止删除哨兵位头节点Node* cur = position._node;Node* prev = cur->_prev;Node* next = cur->_next;prev->_next = next;next->_prev = prev;delete cur;  //cur = nullptr;return next;  //返回删除节点的下一个节点}//AccessT& front(){return _head->_next->_data;}const T& front()const{return _head->_next->_data;}T& back(){return _head->_prev->_data;}const T& back()const{return _head->_prev->_data;}//Capacitysize_t size()const{size_t count = 0;for (auto const& e : *this){count++;}return count;}bool empty()const{return size() == 0;}Node* _head; //头指针,该指针指向的节点为头节点,不存储任何有效数据//头节点中的_data不能存储后面节点的总个数,原因:若T为char型,数据个数过大,会数据溢出};
}

铁铁们,list模拟实现+反向迭代器就到此结束啦,若博主有不好的地方,请指正,欢迎铁铁们留言,请动动你们的手给作者点个👍鼓励吧,你们的鼓励就是我的动力✨

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/721266.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

正信法律:借了钱找不到人怎么办

当一个人借出钱财之后&#xff0c;发现借款人像蒸发了一般无影无踪&#xff0c;这无疑是一件让人头疼的事情。面对这种情况&#xff0c;我们需要采取明智的措施来保护自己的权益。 尽量联络借款人。可以通过电话、短信、电子邮件或社交媒体尝试联系&#xff0c;同时也可以询问共…

界面控件DevExpress WinForms 2024产品路线图预览(一)

DevExpress WinForm拥有180组件和UI库&#xff0c;能为Windows Forms平台创建具有影响力的业务解决方案。DevExpress WinForm能完美构建流畅、美观且易于使用的应用程序&#xff0c;无论是Office风格的界面&#xff0c;还是分析处理大批量的业务数据&#xff0c;它都能轻松胜任…

excel数值无法左对齐

右键&#xff0c;单元格格式 修改为常规 解决

【力扣精选算法100道】——判定是否互为字符重排(哈希专题)

目录 &#x1f6a9;了解题意 &#x1f6a9;算法原理 第一种&#xff1a;排序 第二种方法&#xff1a;哈希 &#x1f6a9;实现代码 面试题 01.02. 判定是否互为字符重排 - 力扣&#xff08;LeetCode&#xff09; &#x1f6a9;了解题意 我们输入俩个字符串&#xff0c;当俩…

张雨霏同款食谱火了,冠军的健康饮食秘密被发现了

2024新一届奥运年到来之际&#xff0c;厨电集成灶领军品牌的森歌突然爆出要“让全民吃到‘冠军’餐”&#xff0c;一时让业界震惊&#xff0c;也让有集成灶消费欲求的消费者感到惊喜。 森歌集成灶的这个“豪言壮语”是来源于森歌联合国家体育总局训练局共同启动的“2024森歌冠…

jquery 后台返回的单选框按照两列展示

jquery代码 <!DOCTYPE html> <html><head><!-- <meta charset"GBK"> --><meta charset"UTF-8"><title></title></head><form><body><table id"myTable"> <tbody …

代码随想录算法训练营Day37 | LeetCode738.单调递增的数字、LeetCode968.监控二叉树、贪心算法总结

LeetCode738.单调递增的数字 思路&#xff1a;与分糖果的题目同理&#xff0c;因为需要与前一位数比较&#xff0c;并且修改这两个数&#xff0c;因此需要从后往前遍历&#xff0c;当前一位数比当前数大时&#xff0c;则前一个数-1&#xff0c;后一个数变为9。 代码细节&…

【C++从0到王者】第四十七站:最小生成树

文章目录 一、最小生成树的概念1.概念2.最小生成树的构造方法 二、Kruskal算法1.算法思想2.代码实现 三、Prim算法1.算法思想2.代码实现3.试试所有节点为起始点 一、最小生成树的概念 1.概念 连通图&#xff1a;在无向图中&#xff0c;若从顶点v1到顶点v2有路径&#xff0c;则…

设计模式:工厂模式 ⑤

一、思想 工厂模式&#xff1a;一个中介作用&#xff0c;在创建对象的时候。 主要作用&#xff1a;屏蔽对象创建过程&#xff0c;减少上层关注度&#xff0c;解耦并且内部方法可做更多扩展增强的处理。(比如使用映射消除if代码&#xff0c;存在多个同类对象需要抽象策略处理的时…

蓝桥杯练习系统(算法训练)ALGO-988 逗志芃的危机

资源限制 内存限制&#xff1a;256.0MB C/C时间限制&#xff1a;1.0s Java时间限制&#xff1a;3.0s Python时间限制&#xff1a;5.0s 问题描述 逗志芃又一次面临了危机。逗志芃的妹子是个聪明绝顶的人&#xff0c;相比之下逗志芃就很菜了。现在她妹子要和他玩一个游戏…

express+mysql+vue,从零搭建一个商城管理系统8--文件上传,大文件分片上传

提示&#xff1a;学习express&#xff0c;搭建管理系统 文章目录 前言一、安装multer&#xff0c;fs-extra二、新建config/upload.js三、新建routes/upload.js四、修改routes下的index.js五、修改index.js六、新建上传文件test.html七、开启jwt验证token&#xff0c;通过login接…

java核心面试题汇总

文章目录 1. Java1.1. TCP三次握手/四次挥手1.2 HashMap底层原理1.3 Java常见IO模型1.4 线程与线程池工作原理1.5 讲一讲ThreadLocal、Synchronized、volatile底层原理1.6 了解AQS底层原理吗 2. MySQL2.1 MySQL索引为何不采用红黑树&#xff0c;而选择B树2.2 MySQL索引为何不采…

JVM(类加载机制)

类加载就是 .class 文件, 从文件(硬盘) 被加载到内存(元数据区)中的过程 类加载的过程 加载: 找 .class 文件的过程, 打开文件, 读文件, 把文件读到内存中 验证: 检查 .class 文件的格式是否正确 .class 是一个二进制文件, 其格式有严格的说明 准备: 给类对象分配内存空间 (先在…

【C++干货基地】面向对象核心概念 | 访问限定符 | 类域 | 实例化 | 类对象模型

&#x1f3ac; 鸽芷咕&#xff1a;个人主页 &#x1f525; 个人专栏: 《C干货基地》《粉丝福利》 ⛺️生活的理想&#xff0c;就是为了理想的生活! 引入 哈喽各位铁汁们好啊&#xff0c;我是博主鸽芷咕《C干货基地》是由我的襄阳家乡零食基地有感而发&#xff0c;不知道各位的…

一分钟了解深度学习算法

自从20世纪40年代起人工智能&#xff08;AI&#xff09;问世以来&#xff0c;学者们不懈探索着如何使机器具备模拟人类学习能力的能力。随着计算性能的不断提升和算法的演进&#xff0c;深度学习算法已成为AI领域的核心技术。本文将简述深度学习算法的概念、构成要素、应用范围…

【亲测】注册Claude3教程,解决Claude3被封号无法发送手机验证码

【亲测】注册Claude3教程&#xff1a;解决无法发送手机验证码的问题 Anthropic 今日宣布推出其最新大型语言模型&#xff08;LLM&#xff09;系列——Claude 3&#xff0c;这一系列模型在各种认知任务上树立了新的性能标准。Claude 3 系列包括三个子模型&#xff1a;Claude 3 …

金三银四,程序员如何备战面试季

金三银四&#xff0c;程序员如何备战面试季 一个人简介二前言三面试技巧分享3.1 自我介绍 四技术问题回答4.1 团队协作经验展示 五职业规划建议5.1 短期目标5.2 中长期目标 六后记 一个人简介 &#x1f3d8;️&#x1f3d8;️个人主页&#xff1a;以山河作礼。 &#x1f396;️…

【单调栈】Leetcode 739.每日温度

【单调栈】Leetcode 739.每日温度 解法&#xff1a;维护单调栈栈中存的是数组的索引 解法&#xff1a;维护单调栈栈中存的是数组的索引 栈中存的是数组的索引 当新的值比当前栈顶的大&#xff0c;那么就执行出栈-更新result数组-判断当新的值比当前栈顶的大&#xff1f;的循环…

白银期货开户交割规则有哪些?

白银期货交割是指期货合约到期时&#xff0c;交易双方通过该期货合约所载商品所有权的转移&#xff0c;了结到期未平仓合约的过程。小编在此为大家详细介绍白银期货的交割规则有哪些。白银期货的交割规则有哪些&#xff1f;白银期货的交割规则主要有&#xff1a; 一、交割商品…

(3)(3.2) MAVLink2数据包签名(安全)

文章目录 前言 1 配置 2 使用 3 MAVLink协议说明 前言 ArduPilot 和任务计划器能够通过使用加密密钥添加数据包签名&#xff0c;为空中 MAVLink 传输增加安全性。这并不加密数据&#xff0c;只是控制自动驾驶仪是否响应 MAVLink 命令。 当自动驾驶仪处于激活状态时&#x…