當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。