C++ 结构体多元素sort排序调用时的写法

//总结一下,结构体数据排序的快速写法
//以后在遇到需要写的时候,不要迟疑快速写完

struct node
{
    int u, v, w;
}a[10000];  //假设该结构体有3个元素

//现在仅实现结构体数组按照w的值从小到大的排序

//1.基于C++的重载写法,写在结构体的定义内 如下:
struct node
{
	int u, v, w;
	bool operator <(const node &x)const
	{
		return w<x.w; //升序排列
	}
};

//现在提高要求:如果w相同,则按照v的值升序排列(降序也可实现)
struct node
{
	int u, v, w;
	bool operator < (const node &x)const
	{
		if(w==x.w)
			return v<x.v;
		  //return x.v<v; //按照的v的值降序排列
		else
			return w<x.w;
	}
};

//同理,也可对第三元素进行参与某种顺序的排列
这种写法直接调用<algorithm>里的函数即可:sort(a, a+n);

//2.自己写比较算子函数的写法
//  sort函数是可以支持调入第三参量(比较函数)// 调用方式:sort(a, a+n, cmp);
struct node
{
	int u, v, w;
};

bool cmp(node a, node b)
{
	if(a.w < b.w ) //按照w的值进行的是:升序排列 !
		return true;
	else
		return false;
}

//还可以这样写
bool cmp(node a, node b)
{
	return a.w<b.w; //升序
}

//当然cmp函数也可以写的稍微复杂点,也就是说,按照优先级对结构体的多个成员按照某种规则排序,就像刚才上面写的
//先按照w的值升序排序,如果w相等,再按照v的值升序排序
bool cmp(node a, node b)
{
	if(a.w==b.w)
		return a.v<b.v;
	else
		return a.w<b.w;
}
//或者这样写
bool cmp(node a, node b)
{
	if(a.w<b.w)
		return true;
	if(a.w==b.w && a.v<b.v )
		return true;
	return false;
}
时间: 2024-12-22 03:51:08

C++ 结构体多元素sort排序调用时的写法的相关文章

(struct)结构体变量作为函数参数调用的方法小结

结构体变量.结构指针变量.结构数组作为函数的参数应用实例分析 struct stud { long int num; float score; }; /*结构体变量作为函数的参数,修改之后的成员值不能返回到主调函数*/ void funvr(struct stud t) { t.num=2000101; t.score=71.0; } /*结构体数组作为函数的参数,修改后的元素的成员值能返回到主调函数*/ void funar(struct stud t[]) //void funar(stru

POJ: 2413 ——优先队列——结构体cmp函数一级排序

我要翻译题目!!! /* A group of cows grabbed a truck and ventured on an  expedition deep into the jungle. Being rather poor drivers, the cows unfortunately managed to run over a rock and puncture the truck's fuel tank. The truck now leaks one unit of fuel ev

hdu 1263 水果 sort对结构体中字符串二级排序

#include <stdio.h> #include <string.h> #include <algorithm> using namespace std; struct node { char name[90],place[90]; int num; }c[105]; bool cmp(node x,node y) { if(strcmp(x.place,y.place)<0) return true; if(strcmp(x.place,y.place)=

根据结构体的一部分,进行排序,从而对该结构体排序

先附上我写的   不能通过的代码 #include<stdio.h> #include<algorithm> using namespace std; struct arrow { int a,b; }; bool cmp(arrow a,arrow b) { return a.a<b.a; } int main() { arrow jian[555]; int w,t,n,i,j,m,a,b,c; scanf("%d",&t); while(t-

【转】 从最简单的vector中sort用法到自定义比较函数comp后对结构体排序的sort算法

sort函数在使用中非常好用,也非常简单,而且效率与冒泡或者选择排序不是一个数量级.本文就sort函数在vector中的用法分为sort函数入门用法与自定义comp比较函数比较结构体这两个最基本的功能讲讲其用法: 1.sort入门: 使用sort需要包含algorithm头文件,完整代码如下 #include<iostream> #include<vector> #include<algorithm>//貌似可以不用,但最好加上. using namespace std

转载 从最简单的vector中sort用法到自定义比较函数comp后对结构体排序的sort算法

转载自:http://www.cnblogs.com/cj695/p/3863142.html sort函数在使用中非常好用,也非常简单,而且效率与冒泡或者选择排序不是一个数量级.本文就sort函数在vector中的用法分为sort函数入门用法与自定义comp比较函数比较结构体这两个最基本的功能讲讲其用法: 1.sort入门: 使用sort需要包含algorithm头文件,完整代码如下 #include<iostream> #include<vector> #include<

从最简单的vector中sort用法到自定义比较函数comp后对结构体排序的sort算法

sort函数在使用中非常好用,也非常简单,而且效率与冒泡或者选择排序不是一个数量级.本文就sort函数在vector中的用法分为sort函数入门用法与自定义comp比较函数比较结构体这两个最基本的功能讲讲其用法: 1.sort入门: 使用sort需要包含algorithm头文件,完整代码如下 #include<iostream> #include<vector> #include<algorithm>//貌似可以不用,但最好加上. using namespace std

C语言 &#183; 运用结构体的排序方法

之前遇到排序只想着最原始的方法,诸如冒泡,选择,快速排序等等,刚刚跟大牛学会了结构体的方法来排序,这样的话以后再也不用怕成绩统计.名次排序之类的题目了. 首先头文件(基于大牛的方法,本人之后做题喜欢引入题目中常用的五个头文件) #include<stdlib.h> #include<string.h> 定义结构体: /*定义一个结构体*/ typedef struct Stu{ char name[10]; int id; int score; }stu; 注释:最后一行stu是别

结构体排序

经常碰到结构体排序的问题,在此总结一下.以一个简单的例题开始: 例1.有三个人(Person结构体),每个人都有name(string型)和age(int型)两个属性,现在需要按照下面的规则排序:先以姓名按从小到大排序(如abc<abd),如果姓名相同,则按照年龄从大到小排序. #include<iostream> #include<string> using namespace std; struct Person{ string name; int age; }; voi