中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++如何求數組中的最大值

c++
小億
424
2024-04-11 17:57:14
欄目: 編程語言

有兩種常見的方法可以求數組中的最大值:

  1. 使用循環遍歷數組,逐個比較每個元素,找到最大值。
#include <iostream>

int findMax(int arr[], int size) {
    int max = arr[0];
    for (int i = 1; i < size; i++) {
        if (arr[i] > max) {
            max = arr[i];
        }
    }
    return max;
}

int main() {
    int arr[] = {10, 5, 20, 15, 30};
    int size = sizeof(arr) / sizeof(arr[0]);
    
    int max = findMax(arr, size);
    
    std::cout << "The maximum value in the array is: " << max << std::endl;
    
    return 0;
}
  1. 使用STL的std::max_element函數來找到數組中的最大值。
#include <iostream>
#include <algorithm>

int main() {
    int arr[] = {10, 5, 20, 15, 30};
    int size = sizeof(arr) / sizeof(arr[0]);
    
    int* max = std::max_element(arr, arr + size);
    
    std::cout << "The maximum value in the array is: " << *max << std::endl;
    
    return 0;
}

這兩種方法都可以用來求數組中的最大值,選擇哪種取決于個人偏好和代碼風格。

0
桂平市| 凌海市| 北川| 洛南县| 邵阳市| 买车| 曲靖市| 田东县| 德清县| 丽江市| 海安县| 开远市| 瓦房店市| 镇坪县| 青岛市| 民丰县| 长宁区| 大洼县| 德安县| 常德市| 丰顺县| 北海市| 彭州市| 冷水江市| 丹棱县| 新安县| 海丰县| 牡丹江市| 余姚市| 徐州市| 格尔木市| 千阳县| 舒城县| 宜兰市| 含山县| 尼玛县| 巩留县| 高邮市| 治县。| 左贡县| 乐至县|