如何在 C + + 中得到向量的最大值或最小值?
对于数组来说,我的假设是否有误呢?
我需要一个迭代器,对吗? 我尝试用 max_element
,但我一直得到一个错误。
vector<int>::const_iterator it;
it = max_element(cloud.begin(), cloud.end());
error: request for member ‘begin’ in ‘cloud’, which is of non-class type ‘int [10]’