【C++】list(下)

news/2024/11/9 16:42:39/

在这里插入图片描述

个人主页~

list(上)~


list

  • 四、模拟实现
    • 1、list.h
      • (1)关于整个list的搭建
        • ①节点
        • ②迭代器
        • ③接口
      • (2)自定义类型实例化
    • 2、test.cpp
      • (1)test1
      • (2)test2
  • 五、额外小知识

四、模拟实现

1、list.h

#pragma once#include <iostream>namespace little_monster
{template<class T>struct list_node{T _data;list_node<T>* _prev;list_node<T>* _next;list_node(const T& x = T()):_data(x),_prev(nullptr),_next(nullptr){}};template<class T,class Ref,class Ptr>struct __list_iterator{typedef list_node<T> Node;typedef __list_iterator<T, Ref, Ptr> self;Node* _node;__list_iterator(Node* n):_node(n){}self& operator++(){_node = _node->_next;return *this;}self& operator--(){_node = _node->_prev;return *this;}self& operator++(int){self tmp(*this);_node = _node->_next;return tmp;}self& operator--(int){self tmp(*this);_node = _node->_prev;return tmp;}Ref operator*(){return _node->_data;}Ptr operator->(){return &_node->_data;}bool operator!=(const self& s){return _node != s._node;}bool operator==(const self& s){return _node == s._node;}};template<class T>class list{typedef list_node<T> Node;public:typedef __list_iterator<T, T&, T*> iterator;typedef __list_iterator<T, const T&, const T*> const_iterator;iterator begin(){return iterator(_head->_next);}iterator end(){return iterator(_head);}const_iterator begin() const{return const_iterator(_head->_next);}const_iterator end() const{return const_iterator(_head);}void Init_empty(){_head = new Node;_head->_next = _head;_head->_prev = _head;_size = 0;}list(){Init_empty();}list(const list<T>& lt){Init_empty();for (auto e : lt){push_back(e);}}void swap(list<T>& lt){std::swap(_head, lt._head);std::swap(_size, lt._size);}list<int>& operator=(list<int> lt){swap(lt);return *this;}~list(){clear();delete _head;_head = nullptr;_size = 0;}void clear(){iterator it = begin();while (it != end()){it = erase(it);}}void push_back(const T& x){insert(end(), x);}void pop_back(){erase(--end());}void push_front(const T& x){insert(begin(), x);}void pop_front(){erase(begin());}iterator insert(iterator pos, const T& x){Node* cur = pos._node;Node* newnode = new Node(x);Node* prev = cur->_prev;prev->_next = newnode;newnode->_prev = prev;newnode->_next = cur;cur->_prev = newnode;++_size;return iterator(newnode);}iterator erase(iterator pos){Node* cur = pos._node;Node* prev = cur->_prev;Node* next = cur->_next;delete cur;prev->_next = next;next->_prev = prev;--_size;return iterator(next);}size_t size(){return _size;}private:Node* _head;size_t _size;};
}

(1)关于整个list的搭建

①节点

节点是一个struct封装的类,由数据、指向前一个位置的指针、指向后一个位置的指针、构造函数共同构成,创建的是一个独立的节点,初始化指针都为空

②迭代器

迭代器是一个struct封装的类,由构造函数、自增自减、解引用、判断相等接口构成,其中Ptr接受指针,Ref接受引用

其中operator* 和operator->之前没有见过,operator* 很简单,返回的是该节点的值data,也就是解引用的作用,然后operator->为了增加代码的可读性,其实是省略了一个->,当A->_data时,其实是A.operator->()->_data,然后这里的A.operator->()返回的是A的指针,然后通过间接访问符->访问_data

其中,有关于迭代器的类型

在list中,迭代器的三个模版参数分别为T、T&、T*,也就是说这个迭代器有该类型,该类型的引用和该类型的指针三个模版参数,这里就是将有关于迭代器的功能全部封装在里边,因为在以前的学习中,包括string和vector,它们的迭代器都是原生态指针,这里对于迭代器的要求更加复杂,因为对于string和vector来说,它们的存储空间是连续的,而list是不连续的

③接口

接口就是常规的接口,包括构造、拷贝构造、析构、增删查改函数,增删查改的接口直接复用的insert和erase,对于构造函数和拷贝构造函数我们封装了一个Init_empty函数,用来生成头结点

(2)自定义类型实例化

struct AA
{AA(int a1 = 0, int a2 = 0):_a1(a1), _a2(a2){}int _a1;int _a2;
};void test3()
{list<AA> lt;lt.push_back(AA(1, 1));lt.push_back(AA(2, 2));lt.push_back(AA(3, 3));auto it = lt.begin();while (it != lt.end()){std::cout << (*it)._a1<<" "<<(*it)._a2 << std::endl;std::cout << it->_a1 << " " << it->_a2 << std::endl;std::cout << it.operator->()->_a1 << " " << it.operator->()->_a1 << std::endl;++it;}std::cout << std::endl;}

在这里插入图片描述
如果是自定义类型的话,访问其中的元素就需要访问操作符来进行访问,这里有三种方式进行访问,都是通过被封装的迭代器进行的

2、test.cpp

(1)test1

测试尾插构造以及拷贝构造

void test1()
{list<int> lt1;lt1.push_back(1);lt1.push_back(2);lt1.push_back(3);lt1.push_back(4);lt1.push_back(5);list<int> lt2(lt1);for (auto e : lt1){std::cout << e << " ";}std::cout << std::endl;for (auto e : lt2){std::cout << e << " ";}std::cout << std::endl;
}

在这里插入图片描述

(2)test2

void test2()
{list<int> lt1;lt1.push_back(1);lt1.push_back(2);lt1.push_back(3);lt1.push_back(4);lt1.push_back(5);lt1.insert(++lt1.begin(), 6);lt1.insert(--lt1.end(), 7);for (auto e : lt1){std::cout << e << " ";}std::cout << std::endl;lt1.erase(++lt1.begin());lt1.erase(--lt1.end());for (auto e : lt1){std::cout << e << " ";}std::cout << std::endl;
}

在这里插入图片描述
这里解释一下,insert是插入指定位置前面一个元素,也就是说6插入到了2前面,7插入到了5前面
erase是删除指定位置的元素,也就是第二个元素以及头结点前一个元素分别是6和5

五、额外小知识

有关于内置类型也会调用构造函数这件事

void test4()
{int* p = new int;*p = 1;//int* p = new int(1);//上面和这句结果是相同的,过程不同,一个是在构造后进行赋值,一个是初始化列表赋初值 AA* ptr = new AA;ptr->_a1 = 1;
}

前面的文章提到过这件事,因为它套用了模版,模版当然也要兼容内置类型,所以内置类型在构造时可以使用类似自定义类型构造的形式,这样也会类似于调用模版函数

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

在这里插入图片描述


今日分享到这里~

在这里插入图片描述


http://www.ppmy.cn/news/1524618.html

相关文章

0906作业+思维导图梳理

一、作业&#xff1a; 1、创捷一个类似于qq登录的界面 1&#xff09;源代码 #include "widget.h" #include "ui_widget.h"Widget::Widget(QWidget *parent): QWidget(parent), ui(new Ui::Widget) {ui->setupUi(this);//QPushbutton:登录、退出this-…

决策树(Decison Tree)—有监督学习方法、概率模型、生成模型、非线性模型、非参数化模型、批量学习

定义 ID3算法 输入&#xff1a;训练数据集&#xff08;T { ( x 1 , y 1 ) , ( x 2 , y 2 ) , ⋯ , ( x N , y N ) } \left\{(x_1,y_1),(x_2,y_2),\cdots,(x_N,y_N)\right\} {(x1​,y1​),(x2​,y2​),⋯,(xN​,yN​)}&#xff09;&#xff0c;特征集A阀值 ε \varepsilon ε 输…

日志框架log4j打印异常堆栈信息携带traceId,方便接口异常排查

一、异常堆栈无traceId 排查定位问题异常痛苦 在日常项目开发中&#xff0c;我们会自定义一个traceId方便&#xff0c;链路追踪。在log4j2.xml 我们可能是这样去配置日志打印格式。 <Console name"CONSOLE" target"SYSTEM_OUT"><PatternLayoutpa…

大腾智能出席龙华云创中心启动与鸿蒙园揭牌仪式

在数字化转型的浪潮中&#xff0c;深圳市龙华区再次引领行业创新&#xff0c;携手华为云成功举办“龙华工业软件云工程应用创新中心启动仪式暨鸿蒙产业园揭牌仪式”&#xff0c;本次盛会已于8月26日圆满落幕。活动现场&#xff0c;来自全国各地的行业精英、企业领袖及专家学者汇…

基于SpringBoot+Vue+MySQL的滑雪场管理系统

系统展示 用户前台界面 管理员后台界面 系统背景 在快速发展的冰雪运动热潮下&#xff0c;为了提升滑雪场的管理效率与顾客体验&#xff0c;我们设计并实现了一套基于SpringBoot后端框架、Vue前端框架以及MySQL数据库的滑雪场管理系统。该系统旨在通过数字化手段&#xff0c;优…

web框架

1. Web框架: 1.1Web框架定义&#xff1a; Web框架是一个用于构建Web应用程序的软件框架&#xff0c;它提供了一套完整的开发工具和库&#xff0c;以简化Web应用的开发过程。Web框架通常实现了HTTP协议、路由机制、模板渲染、数据验证、数据库操作等常用功能。 1.2Web框架与数…

苹果三款Mac新品十月登场:标配M4系列芯片

Mark Gurman爆料&#xff0c; 苹果将在10月推出14和16英寸MacBook Pro、Mac mini和iMac等设备&#xff0c;标配M4系列芯片。 据悉&#xff0c;苹果Mac新品搭载的M4芯片有两种版本&#xff0c;一种是10核CPU10核GPU&#xff0c;一种是8核CPU8核GPU。 值得注意的是&#xff0c;以…

如何将网络安全防范游戏化

组织对威胁的准备和恢复能力跟不上网络犯罪分子的进步。 一些首席执行官仍然认为网络安全需要偶尔干预&#xff0c;而不是持续关注。 但对于许多公司来说&#xff0c;情况并非如此&#xff1b;网络威胁准备需要协调一致的培训工作&#xff0c;因此网络安全团队在攻击发生时已…