HDU 1029: Ignatius and the Princess IV

Posted rhythm-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1029: Ignatius and the Princess IV相关的知识,希望对你有一定的参考价值。

5
1 3 2 3 3
11
1 1 1 1 1 5 5 5 5 5 5
7
1 1 1 1 1 1 1

3

5

1

技术分享图片
#include <stdio.h>
#include <stdlib.h>
int cmp(const void *a,const void *b){
    return *(int*)a-*(int*)b;//(从小到大)
}
int nums[1000000];
int main(){
    int n;
    while(scanf("%d",&n)!=EOF){
        for(int i=0;i<n;i++)scanf("%d",&nums[i]);
        qsort(nums,n,sizeof(int),cmp);
        printf("%d
",nums[n/2]);
    }
    return 0;
}
View Code

 














以上是关于HDU 1029: Ignatius and the Princess IV的主要内容,如果未能解决你的问题,请参考以下文章

[2016-03-27][HDU][1029][Ignatius and the Princess IV]

HDU 1029: Ignatius and the Princess IV

HDU 1029 Ignatius and the Princess IV

HDU 1029 Ignatius and the Princess IV

hdu-1029-Ignatius and the Princess IV

HDU 1029 Ignatius and the Princess IV (map的使用)