[pointer]调用函数找出一维数组中的最值,

Posted profesor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[pointer]调用函数找出一维数组中的最值,相关的知识,希望对你有一定的参考价值。


#include <stdio.h>

void minmax(int a[], int *min, int *max, int len); //函数声明

int main()
{
    int b[] = {1, 2, 4, 7, 10, 15, 17, 20, 100, 90, -1, 1000, 20001, -99,}; //可以修改为你指定的数组
    int min, max;
    minmax(b, &min, &max, sizeof(b) / sizeof(b[0]));
    printf("max=%d, min=%d
", max, min);
    return 0;
}

void minmax(int a[], int *min, int *max, int len)
{
    *min = *max = a[0];
    for (int i=1; i<len; i++) {
        if (*min > a[i])
            *min = a[i];
        if (*max < a[i])
            *max = a[i];
    }
}

 

以上是关于[pointer]调用函数找出一维数组中的最值,的主要内容,如果未能解决你的问题,请参考以下文章

js 找数组中的最值

C语言中怎样用指针找出一维数组中的最大值和最小值并输出它们的下标

如何将一个一维数组中的所有数都赋值为-1?不用循环。

js--数组中的最值

js--数组中的最值

数组最值之谜