快速上手STL中list的使用

news2024/11/14 9:25:04

目录

1.list的构造函数

2.list的赋值运算符重载

3.list的容量操作

4.list的元素访问

5.list的插入删除

insert和erase

头插头删和尾插尾删

6.list的其他操作

交换两个list

改变list的size

清空list

转移链表中的元素


1.list的构造函数

函数原型:

  • 默认构造:explicit list (const allocator_type& alloc = allocator_type());
  • 用n个相同的元素构造:explicit list (size_type n, const value_type& val = value_type(),const allocator_type& alloc = allocator_type());
  • 迭代器区间构造:
    template <class InputIterator>    
    list(InputIterator first, InputIterator last,const allocator_type & alloc = allocator_type());
  • 拷贝构造:list (const list& x);

使用示例:

// list的构造函数
void test_constructor()
{
	// 默认构造:explicit list (const allocator_type& alloc = allocator_type());
	list<int> lt1;

	// 用n个相同的元素构造:explicit list (size_type n, const value_type& val = value_type(),const allocator_type& alloc = allocator_type());
	list<int> lt2(10, 1);
	cout << "lt2: ";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl;

	// 迭代器区间构造:
	// template <class InputIterator>	
	// list(InputIterator first, InputIterator last,const allocator_type & alloc = allocator_type());
	list<int> lt3(lt2.begin(), lt2.end());
	cout << "lt3: ";
	for (auto e : lt3)
	{
		cout << e << ' ';
	}
	cout << endl;

	// 拷贝构造:list (const list& x);
	list<int> lt4(lt3);
	cout << "lt4: ";
	for (auto e : lt4)
	{
		cout << e << ' ';
	}
	cout << endl;
}

int main()
{
	test_constructor();

	return 0;
}

运行结果:
lt2: 1 1 1 1 1 1 1 1 1 1
lt3: 1 1 1 1 1 1 1 1 1 1
lt4: 1 1 1 1 1 1 1 1 1 1

2.list的赋值运算符重载

函数原型:

  • 赋值运算符重载函数:list& operator= (const list& x);

使用示例:

// list的赋值运算符重载
void test_1()
{
	list<int> lt1(5, 1);
	list<int> lt2(8, 2);
	cout << "lt1:";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl;

	cout << "lt2:";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	lt1 = lt2;
	cout << "after \"lt1 = lt2\"" << endl;
	cout << "lt1:";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl;

	cout << "lt2:";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl;
}

int main()
{
	test_1();

	return 0;
}

运行结果:
lt1:1 1 1 1 1
lt2:2 2 2 2 2 2 2 2

after "lt1 = lt2"
lt1:2 2 2 2 2 2 2 2
lt2:2 2 2 2 2 2 2 2

3.list的容量操作

函数原型:

  • 获取list中元素的大小: size_type size() const;
  • 判断是否为空: bool empty() const;

使用示例:

// list的容量操作
void test_capacity()
{
	list<int> lt(5, 1);
	// 获取list中元素的大小: size_type size() const;
	int size = lt.size();
	cout << "lt.size: " << size << endl;

	// 判断是否为空: bool empty() const;
	if (!lt.empty())
	{
		cout << "lt不为空" << endl;
	}
}

int main()
{
	test_capacity();

	return 0;
}

运行结果:
lt.size: 5
lt不为空

4.list的元素访问

访问方式:

  • 范围for
  • 迭代器
  • 获取第一个元素
    reference front();             非const对象调用非const版本的函数,返回非const修饰的引用
    const_reference front() const; const对象调用const版本的函数,返回const修饰的引用
  • 获取最后一个元素
    reference back();              非const对象调用非const版本的函数,返回非const修饰的引用
    const_reference back() const;  const对象调用const版本的函数,返回const修饰的引用

使用示例:

// list的元素访问
void test_element_access()
{
	int arr[] = { 0,1,2,3,4,5,6,7,8,9 };
	list<int> lt(arr, arr+10);

	// 通过范围for访问
	for (auto e : lt)
	{
		cout << e << " ";
	}
	cout << endl << endl;

	// 通过迭代器访问
	auto it = lt.begin();
	while (it != lt.end())
	{
		cout << *it << ' ';
		++it;
	}
	cout << endl << endl;

	// 获取第一个元素
	// reference front();             非const对象调用非const版本的函数,返回非const修饰的引用
	// const_reference front() const; const对象调用const版本的函数,返回const修饰的引用
	cout << "lt.front: " << lt.front() << endl;

	// 获取最后一个元素
	// reference back();              非const对象调用非const版本的函数,返回非const修饰的引用
	// const_reference back() const;  const对象调用const版本的函数,返回const修饰的引用
	cout << "lt.back: " << lt.back() << endl;
}

int main()
{
	test_element_access();

	return 0;
}

运行结果:
0 1 2 3 4 5 6 7 8 9

0 1 2 3 4 5 6 7 8 9

lt.front: 0
lt.back: 9

5.list的插入删除

insert和erase

insert函数原型:

  • 指定迭代器位置插入:iterator insert (iterator position, const value_type& val);
  • 指定迭代器位置插入n个元素:void insert (iterator position, size_type n, const value_type& val);
  • 在指定迭代器位置插入一段迭代器区间的值:
    template <class InputIterator>
    void insert(iterator position, InputIterator first, InputIterator last);

erase函数原型:

  • 删除指定迭代器位置的值:iterator erase (iterator position);
  • 删除一段迭代器区间的值:iterator erase (iterator first, iterator last);

使用示例:

// list的插入和删除
void test_inser_erase()
{
	/*插入操作*/
	list<int> lt(2, 0);
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 指定迭代器位置插入:iterator insert (iterator position, const value_type& val
	list<int>::iterator it = lt.begin();
	lt.insert(it, 100);
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 指定迭代器位置插入n个元素:void insert (iterator position, size_type n, const value_type& val);
	it = lt.begin();
	lt.insert(it, 2, 200);
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 在指定迭代器位置插入一段迭代器区间的值:
	// template <class InputIterator>
	// void insert(iterator position, InputIterator first, InputIterator last);
	it = lt.end();
	lt.insert(it, lt.begin(), lt.end());
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl << endl;

	/*删除操作*/

	// 删除指定迭代器位置的值:iterator erase (iterator position);
	lt.erase(lt.begin());
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 删除一段迭代器区间的值:iterator erase (iterator first, iterator last);
	lt.erase(lt.begin(), --lt.end());
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;
}

int main()
{
	test_inser_erase();

	return 0;
}

运行结果:
lt: 0 0

lt: 100 0 0

lt: 200 200 100 0 0

lt: 200 200 100 0 0 200 200 100 0 0


lt: 200 100 0 0 200 200 100 0 0

lt: 0

头插头删和尾插尾删

函数原型:

  • 头插:void push_front (const value_type& val);
  • 头删:void pop_front();
  • 尾插:void push_back (const value_type& val);
  • 尾删:void pop_back();

使用示例:

// list的头插头删和尾插尾删
void test_2()
{
	list<int> lt(2, 1);
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 头插:void push_front (const value_type& val);
	lt.push_front(5);
	cout << "after \"lt.push_front(5)\"" << endl;
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 头删:void pop_front();
	lt.pop_front();
	cout << "after \"lt.pop_front();\"" << endl;
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 尾插:void push_back (const value_type& val);
	lt.push_back(6);
	cout << "after \"lt.push_back(6);\"" << endl;
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 尾删:void pop_back();
	lt.pop_back();
	cout << "after \"lt.pop_back();\"" << endl;
	cout << "lt: ";
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl << endl;
}

int main()
{
	test_2();

	return 0;
}

运行结果:
lt: 1 1

after "lt.push_front(5)"
lt: 5 1 1

after "lt.pop_front();"
lt: 1 1

after "lt.push_back(6);"
lt: 1 1 6

after "lt.pop_back();"
lt: 1 1

6.list的其他操作

交换两个list

函数原型:

  • 交换两个链表:void swap (list& x);

使用示例:

// list的交换
void test_swap()
{
	list<int> lt1(5, 1);
	list<int> lt2(5, 2);

	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	cout << "lt2: ";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 交换两个list:void swap (list& x);
	lt1.swap(lt2);

	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	cout << "lt2: ";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl << endl;
}

int main()
{
	test_swap();

	return 0;
}

运行结果:
lt1: 1 1 1 1 1

lt2: 2 2 2 2 2

lt1: 2 2 2 2 2

lt2: 1 1 1 1 1

改变list的size

函数原型:

  • 改变size:void swap (list& x);

使用示例:

// 改变链表的size
void test_resize()
{
	list<int> lt1;

	for (int i = 1; i < 10; ++i)
		lt1.push_back(i);

	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	lt1.resize(5);
	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 改变size:void swap (list& x);
	lt1.resize(8, 100);
	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	lt1.resize(12);
	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;
}

int main()
{
	test_resize();

	return 0;
}

运行结果:
lt1: 1 2 3 4 5 6 7 8 9

lt1: 1 2 3 4 5

lt1: 1 2 3 4 5 100 100 100

lt1: 1 2 3 4 5 100 100 100 0 0 0 0

清空list

函数原型:

  • 清空list:void clear();

使用示例:

// 清空list
void test_clear()
{
	list<int> lt(5, 0);
	cout << "lt: ";

	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl;
	cout << "size: " << lt.size() << endl << endl;

	// 清空list
	lt.clear();
	for (auto e : lt)
	{
		cout << e << ' ';
	}
	cout << endl;
	cout << "size: " << lt.size() << endl << endl;
}


int main()
{
	test_clear();

	return 0;
}

运行结果:
lt: 0 0 0 0 0
size: 5


size: 0

转移链表中的元素

函数原型:

  • 将链表中的一个元素转移到另一个链表中的指定位置:void splice (iterator position, list& x, iterator i);
  • 将一个链表的迭代器区间中的值转移到另一个链表:void splice (iterator position, list& x, iterator first, iterator last);
  • 将整个链表转移到另一个链表的指定位置:void splice (iterator position, list& x);

使用示例:

// 链表中元素的转移
void test_splice()
{
	list<int> lt1(5, 1);
	list<int> lt2(10, 2);

	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	cout << "lt2: ";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 将链表中的一个元素转移到另一个链表中的指定位置:void splice (iterator position, list& x, iterator i);
	lt1.splice(lt1.begin(), lt2, lt2.begin());
	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	cout << "lt2: ";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 将一个链表的迭代器区间中的值转移到另一个链表:void splice (iterator position, list& x, iterator first, iterator last);
	lt1.splice(lt1.begin(), lt2, lt2.begin(), ++lt2.begin());
	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	cout << "lt2: ";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	// 将整个链表转移到另一个链表的指定位置:void splice (iterator position, list& x);
	lt1.splice(lt1.begin(), lt2);

	cout << "lt1: ";
	for (auto e : lt1)
	{
		cout << e << ' ';
	}
	cout << endl << endl;

	cout << "lt2: ";
	for (auto e : lt2)
	{
		cout << e << ' ';
	}
	cout << endl << endl;
}

int main()
{
	test_splice();

	return 0;
}

运行结果:
lt1: 1 1 1 1 1

lt2: 2 2 2 2 2 2 2 2 2 2

lt1: 2 1 1 1 1 1

lt2: 2 2 2 2 2 2 2 2 2

lt1: 2 2 1 1 1 1 1

lt2: 2 2 2 2 2 2 2 2

lt1: 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1

lt2:

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

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

相关文章

C# 异步Task异常处理和堆栈追踪显示

Task的问题 在C#中异步Task是一个很方便的语法&#xff0c;经常用在处理异步&#xff0c;例如需要下载等待等方法中&#xff0c;不用函数跳转&#xff0c;代码阅读性大大提高&#xff0c;深受大家喜欢。 但是有时候发现我们的异步函数可能出现了报错&#xff0c;但是异常又没…

ssm102“魅力”繁峙宣传网站的设计与实现+vue(论文+源码)_kaic

摘 要 随着科学技术的飞速发展&#xff0c;各行各业都在努力与现代先进技术接轨&#xff0c;通过科技手段提高自身的优势&#xff1b;“魅力”繁峙宣传网站系统当然也不能排除在外&#xff0c;随着网络技术的不断成熟&#xff0c;带动了“魅力”繁峙宣传网站系统的发展&#x…

MySQL技巧之跨服务器数据查询:基础篇-A数据库与B数据库查询合并--封装到存储过程中

MySQL技巧之跨服务器数据查询&#xff1a;基础篇-A数据库与B数据库查询合并–封装到存储过程中 我们的最终目的是什么&#xff1f;当然的自动执行这些合并操作&#xff01; 上一篇 MySQL技巧之跨服务器数据查询&#xff1a;基础篇-A数据库与B数据库查询合并 我们已经知道怎么合…

短视频新纪元:AI数字人重塑视频运营格局

步入2024年&#xff0c;AI数字人技术如同一股不可忽视的力量&#xff0c;正深刻影响着视频运营的每一个角落。据行业权威机构艾媒咨询的统计数据显示&#xff0c;2023年&#xff0c;数字人相关企业注册数量激增948家&#xff0c;增长率高达68%&#xff0c;这一数据直观反映了数…

Ajax 获取进度和中断请求

HTML加入一些内容方便看效果和做交互&#xff1a; <div><p>当前传输进度&#xff1a;<span id"progress">0%</span></p><button id"send">发送</button><button id"btn">中断</button> …

ctfshow-web入门-SSTI(web361-web368)上

目录 1、web361 2、web362 3、web363 4、web364 5、web365 6、web366 7、web367 8、web368 1、web361 测试一下存在 SSTI 注入 方法很多 &#xff08;1&#xff09;使用子类可以直接调用的函数来打 payload1&#xff1a; ?name{{.__class__.__base__.__subclasses__…

Python学习从0到1 day28 Python 高阶技巧 ⑤ 多线程

若事与愿违&#xff0c;请相信&#xff0c;上天自有安排&#xff0c;允许一切如其所是 —— 24.11.12 一、进程、线程 现代操作系统比如Mac OS X&#xff0c;UNIX&#xff0c;Linux&#xff0c;Windows等&#xff0c;都是支持“多任务”的操作系统。 进程 进程&#xff1a;就…

在Java中使用ModelMapper简化Shapefile属性转JavaBean实战

目录 前言 一、原始的处理办法 1、使用Set方法来转换 2、使用构造方法转换 二、基于ModelMapper的动态转换 1、ModelMapper简介 2、集成到项目中 3、Shapefile属性读取 三、总结 前言 在现代软件开发中&#xff0c;尤其是在多层架构中&#xff0c;经常需要将数据从一个…

2024版本IDEA创建Sprintboot项目下载依赖缓慢

目录 步骤一&#xff1a;在IDEA中搜索Maven(双击shift) 步骤二&#xff1a;找到Maven下的settings.xml文件修改镜像 ​编辑 ​编辑​编辑 步骤三&#xff1a;用VScode打开settings.xml文件修改镜像 ​编辑 步骤一&#xff1a;在IDEA中搜索Maven(双击shift) 步骤二&#xff…

【初阶数据结构与算法】链表刷题之移除链表元素、反转链表、找中间节点、合并有序链表、链表的回文结构

文章目录 一、移除链表元素思路一思路二 二、合并两个有序链表思路&#xff1a;优化&#xff1a; 三、反转链表思路一思路二 四、链表的中间节点思路一思路二 五、综合应用之链表的回文结构思路一&#xff1a;思路二&#xff1a; 一、移除链表元素 题目链接&#xff1a;https:…

三维测量与建模笔记 - 特征提取与匹配 - 4.1 梯度信息提取

上面说的“可关联性”&#xff0c;举一个例子&#xff0c;比如我们拍摄一个凹凸不平的金属表面&#xff0c;在某个角度拍的时候&#xff0c;从图像中可以看到这些凹凸不平的地方&#xff0c;但是换个角度&#xff08;或者光照发生变化&#xff09;拍就看不到了。这样的特征点就…

显示微服务间feign调用的日志

第一步 package com.niuniu.common.config;import com.niuniu.common.CommonConstant; import com.niuniu.common.utils.UserContext; import feign.Logger; import feign.RequestInterceptor; import feign.RequestTemplate; import org.springframework.context.annotation.…

读取文件内容、修改文件内容、识别文件夹目录(Web操作系统文件/文件夹详解)

前言 因 Unicode IDE 编辑器导入文件、文件夹需要&#xff0c;研究了下导入文件/文件夹的功能实现&#xff0c;发现目前相关文章有点少&#xff0c;故而记录下过程&#xff0c;如果有误&#xff0c;还望指正。(API的兼容性及相关属性、接口定义&#xff0c;请自行查看文件系统 …

「Mac玩转仓颉内测版2」入门篇2 - 编写第一个Cangjie程序

本篇详细介绍在Mac系统上创建首个Cangjie项目并编写、运行第一个Cangjie程序的全过程。内容涵盖项目创建、代码编写、程序运行与调试&#xff0c;以及代码修改后的重新运行。通过本篇&#xff0c;掌握Cangjie项目的基本操作&#xff0c;进一步巩固开发环境的配置&#xff0c;迈…

微信小程序_小程序视图与逻辑_day3

一、目标 A. 能够知道如何实现页面之间的导航跳转 B. 能够知道如何实现下拉刷新效果 C. 能够知道如何实现上拉加载更多效果 D. 能够知道小程序中常用的生命周期 二、目录 A. 页面导航 B. 页面事件 C. 生命周期 D. WXS脚本 E. 案例-本地生活&#xff08;列表页面&#xff09;…

Threejs 材质贴图、光照和投影详解

1. 材质和贴图 材质&#xff08;Material&#xff09;定义了物体表面的外观&#xff0c;包括颜色、光泽度、透明度等。贴图&#xff08;Textures&#xff09;是应用于材质的图像&#xff0c;它们可以增加物体表面的细节和真实感。 1.1材质类型 MeshBasicMaterial&#xff1a…

论文概览 |《Sustainable Cities and Society》2024.11 Vol.115(下)

本次给大家整理的是《Sustainable Cities and Society》杂志2024年11月第115期的论文的题目和摘要&#xff0c;一共包括76篇SCI论文&#xff01;由于论文过多&#xff0c;我们将通过两篇文章进行介绍&#xff0c;本篇文章介绍第31--第76篇论文! 论文31 The effect of urban fo…

【问卷调研】HarmonyOS SDK开发者社区用户需求有奖调研

问卷请点击&#xff1a;HarmonyOS SDK开发者社区用户需求有奖调研

【3D Slicer】的小白入门使用指南五

心脏CT多组织半自动分割(解说版) 模块勾选的是converters下的crop volume 右侧移动滑块+移动边框,移动位置找到自己关注的区域即可,然后点击apply(其他参数也要设置的和图片一致) 模块勾选segment editor,并创建心脏多个不同分割位置(默认下不同位置自动分配了不同的颜…

丹摩征文活动|FLUX.1 和 ComfyUI:从部署到上手,轻松驾驭!

FLUX.1 和 ComfyUI&#xff1a;从部署到上手&#xff0c;轻松驾驭&#xff01; FLUX.1历史曲线 黑森林实验室推出了一款名为FLUX.1的先进图像生成模型&#xff0c;根据不同用户需求&#xff0c;提供了三种独特的版本。 FLUX.1-pro&#xff1a;作为专为企业打造的强大闭源版本…