我正在通过加速 C++ 工作,并且遇到了 Ex 的问题。10.2 这些问题涉及重写前一章的中值函数,以便现在可以使用向量或内置数组调用中值。中值函数还应该允许任何算术类型的容器。
我无法对下面详述的中位数进行两次调用 - 我收到错误消息
No matching function for call to 'median'
我从一些研究中收集到,当使用模板时,应该在编译时知道类型。这可能是根本问题吗?有没有办法以某种方式将 Type 作为模板参数传递?
到目前为止,这是我的代码:
#include <iostream>
#include <vector>
#include <stdexcept>
#include <algorithm>
#include <cstddef>
using namespace std;
template <class Iterator, class Type>
Type median(Iterator begin, Iterator end)
{
vector<Type> vec(begin,end);
typedef typename vector<Type>::size_type container_sz;
container_sz size = vec.size();
if (size == 0) {
throw domain_error("median of an empty vector");
}
sort(vec.begin(), vec.end());
container_sz mid = size/2;
return size % 2 == 0 ? (vec[mid] + vec[mid - 1]) / 2 : vec[mid];
}
int main()
{
vector<int> grades;
for (int i = 0; i != 10; ++i){
grades.push_back(i);
}
const int int_array[] = {2, 9, 4, 6, 15};
size_t array_size = sizeof(int_array)/sizeof(*int_array);
cout << median(int_array, int_array + array_size) << endl; //error here: Semantic Issue, No matching function for call to 'median'
cout << median(grades.begin(), grades.end()) << endl; //error here: Semantic Issue, No matching function for call to 'median' "
return 0;
}