c++ sort函数

c++ sort函数,第1张

c++ sort函数

首先是int类型排序

#include
using namespace std;
bool cmp(int x,int y)
{
	return xy;	  //若改为x>y则为降序排 
}
int main()
{
	int n,i;
	scanf("%d",&n);
	int a[n];
	for(i=0;i 

这里用到的是万能头,也可以使用#include

sort()里面首先要填排序的数组及地址,然后是长度,最后是一个函数(若不写则默认为升序排列)。

下面的是结构体的排序:

#include
using namespace std;
typedef struct data{
	string a;
	int score;
	string id;
}N;
bool cmp1(data x,data y)
{
	return x.score>n;
	N str[n];
	for(i=0;i>str[i].a>>str[i].score>>str[i].id;
	}
	cout< 

这里是对结构体的数字和ID(字符串)进行的排序

需要用c++中的string来定义字符串,如果用字符数组则无法对其进行比较。

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存