带动态数组的std :: max

时间:2016-12-04 04:13:05

标签: c++ dynamic standard-library

我正在尝试尽可能多地使用std库,我对std :: max

有疑问
#include <algorithm>

void foo(size_t elem)
{
  auto testArray = new double[elem];
  for(int i = 0; i < elem; ++i)
  {
    testArray[i] = i;
  }

  auto maxElem = std::max(testArray, testArray + (elem - 1));
  delete[] testArray;
}

将参数传递给std :: max函数的最佳方法是什么?我希望我能让这个数组像一个带模板的迭代器。

1 个答案:

答案 0 :(得分:3)

应该是max_element(),而不是max()

auto maxElem = *(std::max_element(testArray, testArray + elem));