std :: max()函数

stl max函数

max() function is a library function of algorithm header, it is used to find the largest value from given two values, it accepts two values and returns the largest value and if both the values are the same it returns the first value.

max()函数算法标头的库函数,用于从给定的两个值中查找最大值,它接受两个值并返回最大值,如果两个值相同,则返回第一个值。

Note:To use max() function – include <algorithm> header or you can simple use <bits/stdc++.h> header file.

注意:要使用max()函数 –包括<algorithm>头文件,或者您可以简单地使用<bits / stdc ++。h>头文件。

Syntax of std::max() function

std :: max()函数的语法

    std::max(const T& a, const T& b);

Parameter(s): const T& a, const T& b – values to be compared.

参数: const T&a,const T&b –要比较的值。

Return value: T – it returns the largest value of type T.

返回值: T –返回类型T的最大值。

Example:

例:

  1.   Input:
  2.   int a = 10;
  3.   int b = 20;
  4.    
  5.   //finding largest value
  6.   cout << max(a,b) << endl;
  7.    
  8.   Output:
  9.   20

C ++ STL程序演示std :: max()函数的使用 (C++ STL program to demonstrate use of std::max() function)

In this example, we are going to find the largest values from given values of different types.

在此示例中,我们将从不同类型的给定值中找到最大值。

  1.   #include <iostream>
  2.   #include <algorithm>
  3.   using namespace std;
  4.    
  5.   int main()
  6.   {
  7.   cout << "max(10,20) : " << max(10, 20) << endl;
  8.   cout << "max(10.23f,20.12f): " << max(10.23f, 20.12f) << endl;
  9.   cout << "max(-10,-20) : " << max(-10, -20) << endl;
  10.   cout << "max('A','a') : " << max('A', 'a') << endl;
  11.   cout << "max('A','Z') : " << max('A', 'Z') << endl;
  12.   cout << "max(10,10) : " << max(10, 10) << endl;
  13.    
  14.   return 0;
  15.   }

Output

输出量

  1.   max(10,20) : 20
  2.   max(10.23f,20.12f): 20.12
  3.   max(-10,-20) : -10
  4.   max('A','a') : a
  5.   max('A','Z') : Z
  6.   max(10,10) : 10

Reference: C++ std::max()

参考: C ++ std :: max()

翻译自: https://www.includehelp.com/stl/std-max-function-with-example.aspx

stl max函数

上一篇:STL(简述)


下一篇:斐波那契(矩阵乘法+快速幂)