POJ 2388Who's in the Middle(水~奇数个数排序求中位数)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ 2388Who's in the Middle(水~奇数个数排序求中位数)相关的知识,希望对你有一定的参考价值。
题目链接:http://poj.org/problem?id=2388
题目大意:
奇数个数排序求中位数
解题思路:看代码吧!
AC Code:
1 #include<stdio.h> 2 #include<algorithm> 3 using namespace std; 4 int main() 5 { 6 int n; 7 while(scanf("%d",&n)!=EOF) 8 { 9 int na[n+1]; 10 for(int i=0; i<n; i++) 11 scanf("%d",&na[i]); 12 sort(na,na+n); 13 printf("%d\n",na[n/2]); 14 } 15 return 0; 16 }
以上是关于POJ 2388Who's in the Middle(水~奇数个数排序求中位数)的主要内容,如果未能解决你的问题,请参考以下文章
bzoj 1753: [Usaco2005 qua]Who's in the Middle排序
BZOJ1753: [Usaco2005 qua]Who's in the Middle