C++ STL std::min() 函数
min() 函数是算法头的库函数,用于从给定的两个值中找到最小值,它接受两个值并返回最小值,如果两个值相同则返回第一个值。
注意:使用 min() 函数 - 包括<algorithm>
标题或者您可以简单使用<bits/stdc++.h>
头文件。
std::min() 函数的语法
std::min(const T& a, const T& b);
参数: const T& a, const T& b
– 要比较的值。
返回值: T
– 它返回 T 类型的最小值。
例:
Input: int a = 10; int b = 20; //finding smallest value cout << min(a,b) << endl; Output: 10
C++ STL程序演示std::min()函数的使用
在这个例子中,我们将从不同类型的给定值中找到最小值。
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
cout << "min(10,20) :" << min(10, 20) << endl;
cout << "min(10.23f,20.12f):" << min(10.23f, 20.12f) << endl;
cout << "min(-10,-20) :" << min(-10, -20) << endl;
cout << "min('A','a') :" << min('A', 'a') << endl;
cout << "min('A','Z') :" << min('A', 'Z') << endl;
cout << "min(10,10) :" << min(10, 10) << endl;
return 0;
}
输出
min(10,20) :10 min(10.23f,20.12f):10.23 min(-10,-20) :-20 min('A','a') :A min('A','Z') :A min(10,10) :10
参考:C++ std::min()
相关用法
- C++ std::minmax()用法及代码示例
- C++ std::min_element()用法及代码示例
- C++ std::minmax()、std::minmax_element()用法及代码示例
- 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::min() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。