作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试做一个二进制搜索模板,当我使用原始“int”运行它时,代码运行正常,但是当我使用“string”运行它时,我得到错误
“没有对 binary_search_template 的匹配函数调用”
为什么它适用于整数而不适用于字符串?
这是代码
main{
std::vector<string> e;
e.push_back("a");
e.push_back("b");
e.push_back("c");
int index = binary_search_template(e, 0, d.size()-1.0, "a"); //error for strings but not ints
}
头文件
template<typename T>
int binary_search_template(std::vector<T>& a, int from, int to, T value);
template<typename T>
int binary_search_template(std::vector<T>& a, int from, int to, T value)
{
if (from > to) {
return -1;
}
int mid = (to + from)/2;
if (a[mid] == value ) {
return mid;
}else if (a[mid] < value) {
return binary_search_template(a, mid+1, to, value);
}else {
return binary_search_template(a, from, mid, value);
}
}
最佳答案
编译器看到两个候选类型 T
当你使用 std::vector<std::string>
和一个字符串文字:
std::string
char const*
您需要下定决心,例如,将参数作为 std::string("a")
传递.或者,您可以为最后一个参数使用额外的模板参数。
关于c++ - "No matching function call to..."用于模板函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34648548/
我是一名优秀的程序员,十分优秀!