我正在尝试使用std::min_element
和std::max_element
返回double的向量中的min和max元素。我的编译器不喜欢我当前尝试使用它们的方式,并且我不理解错误消息。我当然可以编写自己的过程来找到最小/最大,但是我想了解如何使用这些函数。
#include <vector>
#include <algorithm>
using namespace std;
int main(int argc, char** argv) {
double cLower, cUpper;
vector<double> C;
// code to insert values in C not shown here
cLower = min_element(C.begin(), C.end());
cUpper = max_element(C.begin(), C.end());
return 0;
}
这是编译器错误:
../MIXD.cpp:84: error: cannot convert '__gnu_cxx::__normal_iterator<double*, std::vector<double, std::allocator<double> > >' to 'double' in assignment
../MIXD.cpp:85: error: cannot convert '__gnu_cxx::__normal_iterator<double*, std::vector<double, std::allocator<double> > >' to 'double' in assignment
有人可以解释我在做什么错吗?
std::minmax_element
。