文章

2

粉丝

0

获赞

13

访问

578

头像
国名排序 题解:
P1217 同济大学机试题
发布于2025年2月28日 13:07
阅读数 283

对sort的cmp函数的一点小理解,如有不对请大佬们指正:

本题中采用strcmp函数判断结构体数组中两个国名的字符串大小,并用flag记录,若strcmp返回值>0,则代表此时的a字符串>b字符串,因此需要换位,则在return中若flag>0,则返回0,否则返回1,则cmp函数中若返回0值则代表要交换,否则不需要交换,因此在写cmp函数时只要确定好何时交换合适不交换即可。

#include <iostream>
#include <bits/stdc++.h>
using namespace std;
struct Vis
{
    char country[20];
}tar[100];
bool cmp(struct Vis a,struct Vis b)
{
    int flag=strcmp(a.country,b.country);
    return flag>0?0:1;
}
int main()
{
    
    int n;
    while(cin>>n)
    {
        for(int i=0;i<n;i++)
    {
        cin>>tar[i].country;
    }
    sort(tar,tar+n,cmp);
    for(int i=0;i<n;i++)
    {
       cout<<tar[i].country<<endl;
    }
    }
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发