首页 > 其他 > 详细

HDU1029 Ignatius and the Princess IV

时间:2016-08-08 22:50:21      阅读:305      评论:0      收藏:0      [点我收藏+]

问题链接:HDU1029 Ignatius and the Princess IV。基础练习题,用C++语言编写。

题意简述:输入n(n是奇数),然后输入n个整数,求出现(n+1)/2次的整数。

问题分析:n是奇数,(n+1)/2是n的一半以上,只要将n个数据排序,出现(n+1)/2次的整数必然会出现在中间位置。

本问题使用C++语言编写的原因是函数sort()的参数简单,使用方便。

AC的C++语言程序如下:

/* HDU1029 Ignatius and the Princess IV */

#include <iostream>
#include <algorithm>

using namespace std;

const int MAXN = 999999;
int data[MAXN];

int main()
{
    int n;

    while(cin >> n) {
        for(int i=0; i<n; i++)
            cin >> data[i];

        sort(data, data + n);

        printf("%d\n", data[(n + 1) / 2]);
    }

    return 0;
}


HDU1029 Ignatius and the Princess IV

原文:http://blog.csdn.net/tigerisland45/article/details/52146154

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!