C++ list 排序案例

Posted 行码阁119

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ list 排序案例相关的知识,希望对你有一定的参考价值。

 

# include<iostream>
# include<list>
using namespace std;

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;

};

//指定排序规则
bool comparePerson(Person &p1,Person &p2)
{
	//按照年龄做一个升序
	if (p1.m_age == p2.m_age)
		return p1.m_height > p2.m_height;
	else
		return p1.m_age < p2.m_age;

}
void test01()
{

	//所有不支持随机访问迭代器的容器,不可以使用标准算法
	//不支持随机访问迭代器的容器,内部会供应对应的一些算法
	list<Person>L;

	Person p1("aa",35,160);
	Person p2("bb", 35, 167);
	Person p3("cc", 35, 157);
	Person p4("dd", 39, 185);
	Person p5("ee", 38, 176);
	L.push_back(p1);
	L.push_back(p2);
	L.push_back(p3);
	L.push_back(p4);
	L.push_back(p5);

	for (list<Person>::iterator it = L.begin(); it != L.end(); it++)
	{
		cout << "姓名:" << it->m_name << " 年龄:" << it->m_age << " 身高:" << it->m_height << endl;
	}

	//排序后
	cout<< "----------------------------------" << endl;
	L.sort(comparePerson);
	for (list<Person>::iterator it = L.begin(); it != L.end(); it++)
	{
		cout << "姓名:" << it->m_name << " 年龄:" << it->m_age << " 身高:" << it->m_height << endl;
	}

}

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

以上是关于C++ list 排序案例的主要内容,如果未能解决你的问题,请参考以下文章

C++提高编程STL-list容器

C++——容器之分类与各种测试

C++ 简单实现基数排序(list容器)

详细实例说明+典型案例实现 对动态规划法进行全面分析 | C++

list集合排序案例

八大数据排序法冒泡排序法的图形理解和案例实现 | C++