YTU 问题 B: 合并链表(线性表)

在这里插入图片描述

STL大法好啊STL大法好!

C++ STL库中提供了以下链表函数:

1. list::push_back() - 在链表末尾插入元素
2. list::push_front() - 在链表开头插入元素
3. list::pop_back() - 删除链表末尾元素
4. list::pop_front() - 删除链表开头元素
5. list::front() - 访问链表开头元素
6. list::back() - 访问链表末尾元素
7. list::empty() - 判断链表是否为空
8. list::size() - 返回链表中元素个数
9. list::remove() - 删除链表中某个元素
10. list::erase() - 删除链表中某个位置的元素
11. list::insert() - 在链表中某个位置插入元素
12. list::sort() - 对链表进行排序
13. list::reverse() - 反转链表中元素的顺序

无需多言

#include<bits/stdc++.h>
using namespace std;
int n,m;
bool compare(int a,int b){
	return a>=b;
}

int main()
{
	cin>>n;
	list<int> a;
	list<int> b;
	for(int i=0;i<n;i++){
		int x=0;
		cin>>x;
		a.push_back(x);
	}
	cin>>m;
	for(int i=0;i<m;i++)
	{
		int x=0;
		cin>>x;
		b.push_back(x);
	}
	a.merge(b);
	a.sort(compare);
	for(int i=0;i<n+m;i++)
	{
		cout<<a.front()<<" ";
		a.pop_front();
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Marshuo.O

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值