当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ std::minmax()用法及代码示例


C++ STL std::minmax() 函数

minmax() 函数是算法头的库函数,用于求最小值和最大值,它接受两个值并返回一对最小值和最大值,该对的第一个元素包含最小值和第二个元素对包含最大值。

注意:使用 minmax() 函数 - 包括<algorithm>标题或者您可以简单使用<bits/stdc++.h>头文件。

std::minmax() 函数的语法

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

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

返回值: pair– 它返回一对最小和最大值。

例:

    Input:
    int a = 10;
    int b = 20;
    
    //finding pair of smallest and largest numbet
    auto result = minmax(a, b);

    cout << result.first << endl;
    cout << result.second << endl;
    
    Output:
    10
    20

C++ STL程序演示std::minmax()函数的使用

在这个程序中,我们有两个整数变量并找到最小值和最大值。

//C++ STL program to demonstrate use of 
//std::minmax() function
#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
    int a = -10;
    int b = -20;

    //finding pair of smallest and largest numbet
    auto result = minmax(a, b);

    //printing the smallest and largest values
    cout << "smallest number is:" << result.first << endl;
    cout << "largest number is:" << result.second << endl;

    return 0;
}

输出

smallest number is:-20
largest number is:-10

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



相关用法


注:本文由纯净天空筛选整理自 std::minmax() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。