C++ 使用内联函数实现结构体按结构体某成员大小排序

C++ 使用内联函数实现结构体按结构体某成员大小排序,第1张

C++ 使用内联函数实现结构体按结构体某成员大小排序
#include "stdafx.h"
#include 
#include 
#include 
using namespace std;

struct information
{
	int a;
	int b;
	int c;
	int d;

	information()
	{
		a = 0;
		b = 1;
		c = 2;
		d = 3;
	}
};

inline bool compareIfo(information x1, information x2)
{
	return x1.a > x2.a;
}

int _tmain(int argc, _TCHAR* argv[])
{
	vector vecIfo;
	information ifo1;
	ifo1.a = 0;
	ifo1.b = 1;
	ifo1.c = 2;
	ifo1.d = 3;
	vecIfo.push_back(ifo1);

	information ifo2;
	ifo2.a = 1;
	ifo2.b = 1;
	ifo2.c = 2;
	ifo2.d = 3;
	vecIfo.push_back(ifo2);

	sort(vecIfo.begin(), vecIfo.end(), compareIfo);
	return 0;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4752283.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-08
下一篇 2022-11-08

发表评论

登录后才能评论

评论列表(0条)

保存