6-5 求自定类型元素的最大值
题目
https://pintia.cn/problem-sets/14/problems/737
本题要求实现一个函数,求N
个集合元素S[]
中的最大值,其中集合元素的类型为自定义的ElementType
。
程序样例
1 |
|
关键代码
1 | ElementType Max( ElementType S[], int N ){ |
https://pintia.cn/problem-sets/14/problems/737
本题要求实现一个函数,求N
个集合元素S[]
中的最大值,其中集合元素的类型为自定义的ElementType
。
1 | #include <stdio.h> |
1 | ElementType Max( ElementType S[], int N ){ |