带你熟练使用list

在这里插入图片描述

🎈个人主页:🎈 :✨✨✨初阶牛✨✨✨
🐻强烈推荐优质专栏: 🍔🍟🌯C++的世界(持续更新中)
🐻推荐专栏1: 🍔🍟🌯C语言初阶
🐻推荐专栏2: 🍔🍟🌯C语言进阶
🔑个人信条: 🌵知行合一
🍉本篇简介:>:讲解C++中STL中list简单使用.

目录

  • 前言
  • 一、构造函数:
    • (1) 无参构造
    • (2) 用n个val构造
    • (3) 迭代器区间构造
    • (4) 拷贝构造
  • 二、访问数据
    • (1) 迭代器
    • (2) Element access:
  • 三、修改(重点)
    • (1) 头插/删 && 尾插/删
    • (2) insert && erase
      • 🍔insert
      • 🍔erase
    • (3) 迭代器失效问题

前言

官方查询文档

本文的目的主要是介绍list的常用接口,从构造函数,访问数据,修改数据等接口函数介绍.帮助大家初步掌握list的使用,后续会分享list模拟实现,从底层理解list更加深刻的理解list.

一、构造函数:

在这里插入图片描述

函数模型表头
explicit list(const allocator_type & alloc = allocator_type());无参构造
explicit list(size_type n, const value_type & val = value_type())n个val初始化
list(InputIterator first, InputIterator last)迭代器区间初始化
list(const list & x);拷贝构造

学习了stringvector这里就不过多介绍了.

(1) 无参构造

测试代码:

void test1()
{//无参构造	explicit list(const allocator_type & alloc = allocator_type());list<int> L1;cout << "L1=";for (auto it : L1){cout << it << " ";}cout << endl;
}

运行结果:

L1=

(2) 用n个val构造

	//使用n个val构造	explicit list(size_type n, const value_type & val = value_type())list<int> L2(5,2);cout << "L2=";for (auto it : L2){cout << it << " ";}cout << endl;

运行结果:

L2=2 2 2 2 2

(3) 迭代器区间构造

	//迭代器区间构造//template <class InputIterator>//list(InputIterator first, InputIterator last)int arr[] = { 1,2,3,4,5,6,7,8,9,10 };list<int> L3(arr, arr + 10);cout << "L3=";for (auto it : L3){cout << it << " ";}cout << endl;

运行结果:

L3=1 2 3 4 5 6 7 8 9 10

(4) 拷贝构造

	//拷贝构造	list(const list & x);cout << "L4=";list<int> L4(L3);//上面的 L3=1 2 3 4 5 6 7 8 9 10for (auto it : L4){cout << it << " ";}cout << endl;

运行结果:

L4=1 2 3 4 5 6 7 8 9 10

二、访问数据

(1) 迭代器

接口名含义
begin()返回第一个有效元素位置的迭代器
end()返回最后一个有效元素位置的迭代器

(2) Element access:

接口名含义
front()返回list的第一个有效结点中存储的值的引用
back()返回list的最后一个有效节点中存储的值的引用

测试代码:

void test2()
{//测试迭代器list<int> L1;L1.push_back(1);L1.push_back(4);L1.push_back(6);L1.push_back(8);L1.push_back(12);L1.push_back(20);list<int>::iterator it = L1.begin();while (it != L1.end()){cout << *it << " ";++it;}cout << endl;//Element access:cout << "front()=" << L1.front() << endl;	//返回list的第一个有效结点中存储的值的引用cout << "back()=" << L1.back() << endl;		//返回list的最后一个有效节点中存储的值的引用
}

运行结果:

1 4 6 8 12 20
front()=1
back()=20

三、修改(重点)

在这里插入图片描述

接口名解释
push_front头插
pop_front头删
push_back尾插
pop_back尾删
insertlist中的 pos 位置中插入值为val的元素
erase删除list 中的pos位置的元素
swap交换两个list
clear清除list中的有效数据

(1) 头插/删 && 尾插/删

void test3()
{list<int> L1;L1.push_back(1);L1.push_back(3);L1.push_back(4);L1.push_back(5);L1.push_back(7);L1.push_back(9);for (auto it : L1){cout << it << " ";}cout << endl;//头插	L1.push_front(0);L1.push_front(-1);cout << "依次头插0 和-1后:	";for (auto it : L1){cout << it << " ";}cout << endl;//头删L1.pop_front();cout << "头删一次后:		";for (auto it : L1){cout << it << " ";}cout << endl;//尾删L1.pop_back();L1.pop_back();cout << "尾删两次后:		";for (auto it : L1){cout << it << " ";}cout << endl;
}

运行结果:

1 3 4 5 7 9
依次头插0-1:       -1 0 1 3 4 5 7 9
头删一次后:             0 1 3 4 5 7 9
尾删两次后:             0 1 3 4 5

(2) insert && erase

🍔insert

在这里插入图片描述

接口名解释
iterator insert (iterator position, const value_type& val);pos位置插入值val
void insert (iterator position, size_type n, const value_type& val);pos位置开始,插入nval
void insert (iterator position, InputIterator first, InputIterator last);pos位置插入,一个迭代器区间的值

由于list并不支持下标随机访问元素(" []"),所以,我们在使用迭代器的时候,避免使用
迭代器+ num
例如:L1.begin()+2

void test4()
{int arr[] = { 1,2,3,4,5,6,7,8 };list<int> L1(arr, arr + 8);for (auto it : L1)						//1 2 3 4 5 6 7 8{cout << it << " ";}cout << endl;// insert//iterator insert (iterator position, const value_type& val);\//list的迭代器不支持直接+=num//L1.insert(L1.begin()+2 ,66);	//报错auto it1 = L1.begin();++it1;++it1;L1.insert(it1, 66);for (auto it : L1)						//1 2 66 3 4 5 6 7 8{cout << it << " ";}cout << endl;//void insert(iterator position, size_type n, const value_type & val);L1.insert(L1.begin(), 3, 0);	//在第一个位置插入3个0for (auto it : L1)						//0 0 0 1 2 66 3 4 5 6 7 8{cout << it << " ";}cout << endl;//template <class InputIterator>//	void insert(iterator position, InputIterator first, InputIterator last);int arr2[] = { -1,-2,-3 };L1.insert(L1.begin(), arr2, arr2+3);	//在第一个位置插入一段迭代器区间的值for (auto it : L1)						//-1 -2 -3 0 0 0 1 2 66 3 4 5 6 7 8{cout << it << " ";}cout << endl;
}

在这里插入图片描述

🍔erase

在这里插入图片描述

接口名解释
iterator erase (iterator position);删除该迭代器位置的值
iterator erase (iterator first, iterator last);删除迭代器区间中的值

测试代码:

void test5()
{int arr[] = { 1,2,3,4,5,6,7,8 };list<int> L1(arr, arr + 8);for (auto it : L1)						//1 2 3 4 5 6 7 8{cout << it << " ";}cout << endl;//eraseauto it1 = L1.end();		//指向最后一个有效元素的下一个位置--it1;					//指向最后一个有效元素的位置--it1;					//指向倒数第二个有效元素的位置L1.erase(it1);for (auto it : L1)						//1 2 3 4 5 6 8{cout << it << " ";}cout << endl;auto it2 = L1.begin();++it2;auto it3 = L1.end();--it3;L1.erase(it2,it3);for (auto it : L1)						//1 8{cout << it << " ";}cout << endl;
}

在这里插入图片描述

(3) 迭代器失效问题

猜一猜这段代码的结果是什么?

void test6()
{int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 };list<int> L1(arr, arr + 10);auto it = L1.begin();auto it2 = L1.end();--it2;while (it != it2){// erase()函数执行后,it所指向的节点已被删除,因此it无效,在下一次使用it时,it就失效了L1.erase(it);++it;}cout << endl;
}

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

解释:
迭代器失效即迭代器所指向的节点的无效,即该节点被删除了。因为list的底层结构为带头结点的双向循环链表,插入并不会导致扩容而产生迭代器失效问题,只有在删除时才会失效,并且失效的只是指向被删除节点的迭代器,其他迭代器不会受到影响。

如下图:
在这里插入图片描述

那我该如何解决这个问题呢?

在这里插入图片描述

void test6()
{int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };list<int> L1(arr, arr+10);auto it = L1.begin();auto it2 =L1.end();--it2;while (it != it2){it=L1.erase(it);}for (auto it : L1)						{cout << it << " ";}cout << endl;
}

在这里插入图片描述

下一篇,我们list模拟实现见吧!
在这里插入图片描述

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

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

相关文章

企业工程项目管理系统源码(三控:进度组织、质量安全、预算资金成本、二平台:招采、设计管理)

工程项目管理软件&#xff08;工程项目管理系统&#xff09;对建设工程项目管理组织建设、项目策划决策、规划设计、施工建设到竣工交付、总结评估、运维运营&#xff0c;全过程、全方位的对项目进行综合管理 工程项目各模块及其功能点清单 一、系统管理 1、数据字典&am…

再战SDRAM与资料整理。

总之只要阅读操作手册&#xff0c;按照时序来&#xff0c;完全不难&#xff01; 器件记录&#xff1a; 小梅哥AC620上SDRAM&#xff1a;M12L2561616A-6TG2T 其的存储空间为16M*16256MB&#xff0c;第二行的数字则与其速度等级有关&#xff1b;其分为&#xff1a; 4bank*16bit…

Sqlserver 监控使用磁盘空间情况

最近遇到一个小问题&#xff1a;为了保存以往的一些数据&#xff0c;间了大量临时表&#xff0c;导致SQLserver 数据增长过快&#xff0c;不得不想个办法监控磁盘空间使用情况。 网上一般有几种办法&#xff1a; 一是使用 dm_os_volume_stats函数&#xff0c;缺点是 无法获取非…

流量卡的最低申请年龄是多少?关于流量卡申请年龄问题解答。

随着短视频的兴起&#xff0c;现在各个年龄段的朋友对流量的需求也是越来越多&#xff0c;据小编了解&#xff0c;尤其是年轻的网友&#xff0c;越来越多的人会考虑购买流量卡来满足自己的需求&#xff0c;那么问题来了&#xff0c;流量卡的申请年龄有什么限制吗&#xff1f; ​…

C++项目中mysql的环境配置

第一步创建好项目&#xff0c;选择X64架构 此次项目采用动态库在项目文件夹加入mysql的库分别为libmysql.dll和include 在包含目录中填入相对路径 添加附加依赖项 现在我们写一个开发环境验证代码&#xff0c;检查一下环境是否配置成功 F7生成此时完美运行 至此环境已经配置完成…

钉钉对接打通金蝶云星空获取审批实例详情接口与采购订单新增接口

钉钉对接打通金蝶云星空获取审批实例详情接口与采购订单新增接口 数据源平台:钉钉 钉钉是阿里巴巴集团打造的企业级智能移动办公平台&#xff0c;是数字经济时代的企业组织协同办公和应用开发平台。钉钉将IM即时沟通、钉钉文档、钉闪会、钉盘、Teambition、OA审批、智能人事、钉…

kubesphere中间件部署

微服务部署前中间件部署 一、MySQL部署 1.1 使用Docker实现MySQL主从复制 docker run -p 3307:3306 --name mysql-master \ -v /mydata/mysql/master/log:/var/log/mysql \ -v /mydata/mysql/master/data:/var/lib/mysql \ -v /mydata/mysql/master/conf:/etc/mysql \ -e My…

3.k8s dashboard设置域名登录案例(ingress版本为1.3.1)

文章目录 前言一、安装ingress1.1 下载ingress部署文件1.2 查看是否安装成功 二、配置dashboard域名映射2.1.在windows和linux添加上域名映射2.2 生成tls证书2.3 新增ingress配置2.3 验证 总结 前言 前面搭建了集群&#xff0c;配置了账号密码登录&#xff0c;现在配置k8s das…

React如何实现国际化?

目录 一、Redux准备工作 commonTypes.js commonActions.js commonReducer.js rootReducer.js 二、然后定义SelectLang组件 index.js index.less 三、创建语言包 welcomeLocale.js index.js 四、使用 react的入口文件 App.js welcome.js 附 关于如何实现国际…

汉诺塔问题(包含了三台柱和四台柱)——C语言版本

目录 1. 什么是汉诺塔 2. 三座台柱的汉诺塔 2.1 思路 2.2 三座台柱的汉诺塔代码 3. 四座台柱的汉诺塔 3.1 思路 3.2 四座台柱的汉诺塔代码 1. 什么是汉诺塔 汉诺塔代码的功能&#xff1a;计算盘子的移动次数&#xff0c;由数学公式知&#xff0c;汉诺塔的盘子移动次数与…

Mybatis学习笔记3 在Web中应用Mybatis

Mybatis学习笔记2 增删改查及核心配置文件详解_biubiubiu0706的博客-CSDN博客 技术栈:HTMLServletMybatis 学习目标: 掌握mybatis在web应用中如何使用 Mybatis三大对对象的作用域和生命周期 关于Mybatis中三大对象的作用域和生命周期、 官网说明 ThreadLocal原理及使用 巩…

云原生之使用Docker部署Teedy轻量级文档管理系统

云原生之使用Docker部署Teedy轻量级文档管理系统 一、Teedy介绍1.1 Teedy简介1.2 Teedy特点 二、本地环境介绍2.1 本地环境规划2.2 本次实践介绍 三、本地环境检查3.1 检查Docker服务状态3.2 检查Docker版本3.3 检查docker compose 版本 四、下载Teedy镜像五、部署Teedy轻量级文…