list排序案例

这篇博客展示了如何使用C++对自定义类型person进行排序,首先按年龄升序,年龄相同时按身高降序排列。通过定义比较函数ComporePerson实现了排序逻辑,并通过printlist函数展示排序结果。示例代码中创建了一个person对象的list,并进行了排序前后的打印,以验证排序效果。
摘要由CSDN通过智能技术生成

排序一个自定义类型person

首先按年龄排序,年龄相同再按身高排序

效果:

代码:

#include<iostream>
using namespace std;
#include<list>
class person
{
public:
	person(string name, int age, int height)
	{
		this->m_name = name;
		this->m_age = age;
		this->m_height = height;
	}
	string m_name;
	int m_age;
	int m_height;
};
//指定paixuguize
bool ComporePerson(person& p1, person& p2)
{
	//按年龄升序
	if (p1.m_age == p2.m_age)
	{
		return p1.m_height > p1.m_height;
	}
	return p1.m_age<p2.m_age;
}
void printlist(const list<person>& L)
{
	for (list<person>::const_iterator it = L.begin(); it != L.end(); it++)
	{
		cout << "姓名: " << (*it).m_name << "\t年龄:" << it->m_age << "\t身高:" << it->m_height << endl;;
	}
	cout << endl;
}

void test01()
{
	list<person> L;
	person p1("刘备",58,162);
	person p2("关羽", 53, 172);
	person p3("奶爸", 32, 192);
	person p4("老板", 58, 152);
	person p5("柏拉图", 58, 172);
	L.push_back(p1);
	L.push_back(p2);
	L.push_back(p3);
	L.push_back(p4);
	L.push_back(p5);
	printlist(L);
	cout << "排序后" << endl;
	cout << "_________________________" << endl;
	L.sort(ComporePerson);
	printlist(L);
	
}

int main()
{
	test01();
	system("pause");
	return 0;
}

 

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

Koi279

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

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

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

打赏作者

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

抵扣说明:

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

余额充值