C++ std::max 与自定义比较函数

avatar
作者
筋斗云
阅读量:0

在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 函数时自定义比较函数。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!