CCF_201503-2_数字排序

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_201503-2_数字排序相关的知识,希望对你有一定的参考价值。

自己写个排序的cmp。

 

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;

struct  point{
    int num,counts;
}a[1005];

bool cmp(point x,point y)
{
    if(x.counts == y.counts)    return x.num < y.num;
    return x.counts > y.counts;
}

int main()
{
    int n,all = 0;
    cin >> n;
    for(int i = 0;i <= 1000;i++)
    {
        a[i].num = i;
        a[i].counts = 0;
    }
    int temp;
    while(n--)
    {
        cin >> temp;
        if(!a[temp].counts)    all++;
        a[temp].counts++;
    }
    sort(a,a+1001,cmp);
    for(int i = 0;i < all;i++) cout << a[i].num <<   << a[i].counts << endl;
    return 0;
}

 

以上是关于CCF_201503-2_数字排序的主要内容,如果未能解决你的问题,请参考以下文章

CCF系列之数字排序(201503-2)

CCF 201503-2 数字排序

[Python]CCF——数字排序(201503-2)

CCF201503-2数字排序

201503-2 数字排序 Java

CCF-CSP 201612 赛题训练