Obtain the max value in array using recursive method (用递归调用的方法来求一个数组元素的最大值)

本文探讨了如何使用C++递归方法获取数组的最大值,但展示了两个代码片段,其中一个返回了错误的结果。第一个代码片段中,`getMaxValue` 函数未能正确递归,导致输出不是数组中的最大值。第二个代码片段加入了随机数生成和元素显示功能,演示了如何正确实现递归获取最大值。
摘要由CSDN通过智能技术生成

the results:

The max value in the array is: 7

The codes:

//obtain the max value from an array by recrusive method
#include <iostream>
#include <iomanip>
using namespace std;
int getMaxValue(int array[], int n);
int main()
{
    int a[] = {1,2,3,4,5,6,7};
    cout << "The max value in the array is: " << getMaxValue(a, 7) << endl;
    return 0;
}
int getMaxValue(int array[], int n)
{
    if (n == 0){
        return array[0]; 
    }
    return max(array[n-1], getMaxValue(array, n-1));
}
PS C:\Users\Desktop\C++\FirstProgram> .\practice.exe
6
The max value in the array is: 20
The elements in array
 14 20 13  2  5 13

The corresponding codes:

//obtain the max value from an array by recrusive method
#include <iostream>
#include <iomanip>
#include <ctime>
#include <cstdlib>
using namespace std;
int getMaxValue(int array[], int n);
void generate_array(int* &array, int n); //The reference function could help transfer argument 
void display_array(int array[], int n); 
int main()
{
    srand((unsigned)time(NULL));
    int n;
    cin >> n;
    int* a;
    generate_array(a, n);
    cout << "The max value in the array is: " << getMaxValue(a, n) << endl;
    display_array(a, n);
    free(a);
    return 0;
}
int getMaxValue(int array[], int n)
{
    if (n == 0){
        return array[0]; 
    }
    return max(array[n-1], getMaxValue(array, n-1));
}
void generate_array(int* &array, int n)
{
    array = new int[n];
    for(int i = 0; i < n; i++){
        array[i] = rand() % 20 +1;
    }
}
void display_array(int array[], int n)
{
    cout << "The elements in array" << endl;
    for(int i = 0; i < n; i++){
        cout << setw(3) << array[i];
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值