Attention: 如果喜欢我写的文章,欢迎来我的github主页给star
Github:github.com/MuziJin
本题要求实现一个函数,求N个集合元素S[]中的最大值,其中集合元素的类型为自定义的ElementType。
函数接口定义:
ElementType Max( ElementType S[], int N );
其中给定集合元素存放在数组S[]中,正整数N是数组元素个数。该函数须返回N个S[]元素中的最大值,其值也必须是ElementType类型。
裁判测试程序样例:
#include <stdio.h>
#define MAXN 10
typedef float ElementType;
ElementType Max( ElementType S[], int N );
int main ()
{
ElementType S[MAXN];
int N, i;
scanf("%d", &N);
for ( i=0; i<N; i++ )
scanf("%f", &S[i]);
printf("%.2f\n", Max(S, N));
return 0;
}
输入样例:
3
12.3 34 -5
输出样例:
34.00
Code
ElementType Max( ElementType S[], int N )
{ ElementType temp;
for(int i=1; i<N; i++)
{
if(S[i] <S[i-1])
{
temp = S[i];
S[i] = S[i-1];
S[i-1] = temp;
}
}
return S[N-1];
}
转载请注明出处:github.com/MuziJin