每日学习笔记:C++ STL 的forward_list

定义

特点

操作函数

元素查找、移除或安插

forward_list::emplace_after

**arg...**指的是元素构造函数的参数(0~N个)

cpp 复制代码
#include <iostream>
#include <memory>
#include <list>
#include <forward_list>
using namespace std;

class aaa
{
public:
	aaa() { 
		c = 666;
	};
	aaa(int a, int b) {
		c = a + b;
	};
	friend std::ostream& operator << (std::ostream& o, const aaa& s) {
		o << s.c;
		return o;
	}

private:
	int c;
};

int main()
{
	forward_list<aaa> t1{ {1,1},{},{2,2} }; 
	std::copy(t1.cbegin(), t1.cend(), std::ostream_iterator<aaa>(cout, " "));
	cout << endl;

	t1.emplace_after(t1.before_begin(), 6, 8);
	std::copy(t1.cbegin(), t1.cend(), std::ostream_iterator<aaa>(cout, " "));
	cout << endl;

	t1.emplace_after(t1.before_begin());
	std::copy(t1.cbegin(), t1.cend(), std::ostream_iterator<aaa>(cout, " "));
	cout << endl;

	forward_list<int> t{ 1,2,3 }; 
	t.emplace_after(t.before_begin(), 55);
	std::copy(t.cbegin(), t.cend(), std::ostream_iterator<int>(cout, "-"));
	for (;;);
}

forward_list::splice_after

<C++标准库第二版>书中介绍了c.splice_after(pos,c2,c2pos)的定义【将c2pos所指的下一个转移到pos所指的下一个】,但是示例代码却写成了

这个调用的参数顺序与函数定义的参数顺序并不一致,于是我专门验证了一下,发现这个写法的运行结果与按照函数定义的参数顺序t2.splice_after(pos2, t1, pos1);运行结果居然相同,甚至我改成了下面这样的调用,结果仍然相同

cpp 复制代码
forward_list<int> t3; //定义一个空的forward_list
t3.splice_after(pos2, forward_list<int>(), pos1); //形参传入一个空的forward_list

细看了一下 splice_after函数实现发现,在没有开启DEBUG宏的情况下,其内部并没有操作形参传入的forward_list参数,而只是对迭代器pos2、pos1之右(后)所指内容进行了拼接。即常规的单向链表拼接的指针操作。

示例代码:

cpp 复制代码
#include <iostream>
#include <forward_list>
using namespace std;

int main()
{
	forward_list<int> t1{1,2,3,4,5};
	forward_list<int> t2{ 97,98,99};
	auto pos1 = t1.before_begin();
	for (auto pb1 = t1.begin(); pb1 != t1.end(); ++pb1,++pos1)
	{
		if (*pb1 == 3)
		{
			break;
		}
	}

	auto pos2 = t2.before_begin();
	for (auto pb2 = t2.begin(); pb2 != t2.end(); ++pb2, ++pos2)
	{
		if (*pb2 == 99)
		{
			break;
		}
	}

	t1.splice_after(pos2, t2, pos1);
	//t2.splice_after(pos2, t1, pos1);
	//forward_list<int> t3;
	//t3.splice_after(pos2, forward_list<int>(), pos1);
	

	//t2.splice_after(pos2, t1, t1.before_begin());
	//t2.splice_after(pos2, t1, t1.begin());
	for (;;);
}
相关推荐
Chef_Chen4 分钟前
从0开始学习机器学习--Day19--学习曲线
人工智能·学习·机器学习
Bearnaise35 分钟前
PointMamba: A Simple State Space Model for Point Cloud Analysis——点云论文阅读(10)
论文阅读·笔记·python·深度学习·机器学习·计算机视觉·3d
Zfox_36 分钟前
【Linux】进程信号全攻略(二)
linux·运维·c语言·c++
起名字真南1 小时前
【OJ题解】C++实现字符串大数相乘:无BigInteger库的字符串乘积解决方案
开发语言·c++·leetcode
少年负剑去1 小时前
第十五届蓝桥杯C/C++B组题解——数字接龙
c语言·c++·蓝桥杯
cleveryuoyuo1 小时前
AVL树的旋转
c++
神仙别闹1 小时前
基于MFC实现的赛车游戏
c++·游戏·mfc
怀旧6661 小时前
spring boot 项目配置https服务
java·spring boot·后端·学习·个人开发·1024程序员节
小c君tt1 小时前
MFC中 error C2440错误分析及解决方法
c++·mfc
木向2 小时前
leetcode92:反转链表||
数据结构·c++·算法·leetcode·链表