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()
相關用法
- C++ std::minmax()、std::minmax_element()用法及代碼示例
- C++ std::min_element()用法及代碼示例
- C++ std::min()用法及代碼示例
- C++ std::min用法及代碼示例
- C++ std::min_element用法及代碼示例
- C++ std::minus用法及代碼示例
- C++ std::mismatch()用法及代碼示例
- C++ std::max()用法及代碼示例
- C++ std::move_backward用法及代碼示例
- C++ std::move用法及代碼示例
- C++ std::max_element()用法及代碼示例
- C++ std::multiplies用法及代碼示例
- C++ std::max用法及代碼示例
- C++ std::make_signed用法及代碼示例
- C++ std::memcmp()用法及代碼示例
- C++ std::memchr用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ std::less_equal用法及代碼示例
- C++ std::is_member_object_pointer模板用法及代碼示例
- C++ std::copy_n()用法及代碼示例
注:本文由純淨天空篩選整理自 std::minmax() function with example in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。