给定一个向量,我们必须使用C ++ STL程序最小/最小元素。
要查找向量的最小或最小元素,我们可以使用在<algorithm>标头中定义的* min_element()函数。它接受一定范围的迭代器,我们必须从中查找最小/最小元素,然后返回指向给定范围之间的最小元素的迭代器。
注意:要使用vector –包含<vector>头文件,并使用* min_element()函数–包含<algorithm>头文件,或者我们可以简单地使用<bits / stdc ++。h>头文件。
语法:
*min_element(iterator start, iterator end);
在这里,迭代器开始,迭代器结束是它们之间向量中迭代器的位置,我们必须找到最小值。
示例
Input: vector<int> v1{ 10, 20, 30, 40, 50, 25, 15 }; cout << *min_element(v1.begin(), v1.end()) << endl; Output: 10
//C ++ STL程序查找最小值或最小值 //向量的元素 #include <iostream> #include <algorithm> #include <vector> using namespace std; int main(){ //向量 vector<int> v1{ 10, 20, 30, 40, 50 }; //打印元素 cout << "vector elements..." << endl; for (int x : v1) cout << x << " "; cout << endl; //寻找最小元素 int min = *min_element(v1.begin(), v1.end()); cout << "minimum/smallest element is: " << min << endl; return 0; }
输出结果
vector elements... 10 20 30 40 50 minimum/smallest element is: 10