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

溫馨提示×

C++ std::max 與自定義比較函數

c++
小樊
82
2024-08-02 19:47:14
欄目: 編程語言

在C++中,std::max 是一個模板函數,用于返回兩個值中的較大值。如果要在使用 std::max 函數時自定義比較函數,可以使用函數指針或者 lambda 表達式來實現。

例如,如果要找出兩個字符串中長度較長的那個字符串,可以這樣寫:

#include <iostream>
#include <algorithm>
#include <string>

bool compareStringLength(const std::string &a, const std::string &b) {
    return a.length() < b.length();
}

int main() {
    std::string str1 = "hello";
    std::string str2 = "world";
    
    std::string longerStr = std::max(str1, str2, compareStringLength);
    
    std::cout << "The longer string is: " << longerStr << std::endl;
    
    return 0;
}

上面的例子中,我們定義了一個比較字符串長度的比較函數 compareStringLength,然后將其作為第三個參數傳遞給 std::max 函數。

另一種方法是使用 lambda 表達式來定義比較函數,如下所示:

#include <iostream>
#include <algorithm>
#include <string>

int main() {
    std::string str1 = "hello";
    std::string str2 = "world";
    
    std::string longerStr = std::max(str1, str2, 
        [](const std::string &a, const std::string &b) {
            return a.length() < b.length();
        });
    
    std::cout << "The longer string is: " << longerStr << std::endl;
    
    return 0;
}

在這個例子中,我們使用 lambda 表達式來定義比較函數,直接將其作為第三個參數傳遞給 std::max 函數。

無論是使用函數指針還是 lambda 表達式,都可以很方便地在使用 std::max 函數時自定義比較函數。

0
铜梁县| 清徐县| 迁西县| 荔浦县| 赞皇县| 新竹县| 大同县| 运城市| 和顺县| 那曲县| 佛山市| 赤峰市| 钟山县| 涟水县| 南投市| 上杭县| 谢通门县| 龙泉市| 隆林| 上犹县| 会东县| 霍城县| 桐城市| 嘉兴市| 凤台县| 禹城市| 邻水| 和静县| 微博| 综艺| 肃宁县| 阳原县| 昌吉市| 班戈县| 开封市| 仙游县| 漾濞| 安溪县| 禄劝| 佳木斯市| 库尔勒市|