C++sort()对结构体类型排序
struct类型排序#include <iostream>#include <algorithm>#include<vector>using namespace std;struct Date{int a;int b;};bool com(const Date x,const Date y){if(x.a==y.a
·
struct类型排序
#include <iostream>
#include <algorithm>
#include<vector>
using namespace std;
struct Date
{
int a;
int b;
};
bool com(const Date x,const Date y)
{
if(x.a==y.a)
return x.b>y.b;
return x.a>y.a;
}
int main()
{
Date dat[5] = {{1,10},{2,9},{3,8},{3,7},{5,6}};
sort(dat,dat+5,com); //按照第1个数由大到小排序,当第1个数相同时,按照第2个数由大到小排序
for(int i=0;i<5;i++)
{
cout<<dat[i].a<<" "<<dat[i].b<<endl;
}
return 0;
}
输出:
5 6
3 8
3 7
2 9
1 10
bool operator
型写法
operator重载小于运算符,可以设定由小到大排序,也可以设定由大到小排序
两种写法,可以写在struct内,也可以写在struct外。
这种写法区分于那种重载()运算符写法。
在struct外重载小于运算符
#include <iostream>
#include <algorithm>
#include<vector>
using namespace std;
struct Date
{
int a;
int b;
};
bool operator<(const Date &x,const Date &y)
{
if(x.a == y.a)
return x.b>y.b;
return x.a>y.a;
}
int main()
{
Date dat[5] = {{1,10},{2,9},{3,8},{3,7},{5,6}};
sort(dat,dat+5);
for(int i=0;i<5;i++)
{
cout<<dat[i].a<<" "<<dat[i].b<<endl;
}
return 0;
}
输出:
5 6
3 8
3 7
2 9
1 10
在struct内重载小于运算符
#include <iostream>
#include <algorithm>
#include<vector>
using namespace std;
struct Date
{
int a;
int b;
bool operator < (const Date &y) const
{
return b>y.b; //设定按照b由大到小排列
}
};
int main()
{
Date dat[5] = {{1,10},{2,9},{3,8},{3,7},{5,6}};
sort(dat,dat+5);
for(int i=0;i<5;i++)
{
cout<<dat[i].a<<" "<<dat[i].b<<endl;
}
return 0;
}
输出:
1 10
2 9
3 8
3 7
5 6
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)