python通过线性搜索查找最大值

2022-04-14 00:00:00 查找 线性 最大值

给定一个数组a,查找数组中的最大值,线性搜索常规代码。

def findMaximum(a, n):
    result = a[0]
    i = 1
    while i < n:
        if a[i] > result:
            result = a[i]
        i += 1
    return result

相关文章