由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - leetcode, sort algorithm compiler error c++
相关主题
leetcode 的编译器是旧的还是新的?问一个C++函数Parameter的问题
C++ Singleton Template - 编译通不过VC++ does not support strlen()
请教struct inside class的问题(C++)C++ template question with friend ostream
[合集] C++ 里面 long 怎么 进行 bitwise AND调用win32 DLL的问题
Visual C++ 高手帮忙,一个Link Error[合集] 关于C++ Class Template编程一问
问个visual studio/编译的问题问一个windows下编译openGL code的问题
一个VC++ .net里编译C程序的问题c++ does not check const for extern variable?
相关话题的讨论汇总
话题: vector话题: int话题: sort话题: std
进入JobHunting版参与讨论
1 (共1页)
x*****0
发帖数: 452
1
bool myComparision1(vector x, vector y);
vector > result;
sort(result.begin(), result.end(), myComparision1);
用GCC4.6.1编译,在自己的电脑上没有问题。
leetocde 一直给出如下错误:
Line 77: no matching function for call to 'sort(std::vector
>::iterator, std::vector >::iterator, overloaded function type>)'
r*******e
发帖数: 7583
2
put myComparision1 out of the Solution namespace

int>

【在 x*****0 的大作中提到】
: bool myComparision1(vector x, vector y);
: vector > result;
: sort(result.begin(), result.end(), myComparision1);
: 用GCC4.6.1编译,在自己的电脑上没有问题。
: leetocde 一直给出如下错误:
: Line 77: no matching function for call to 'sort(std::vector
: >::iterator, std::vector >::iterator, : overloaded function type>)'

k****e
发帖数: 116
3
myComparison为啥不用reference?
另外C++ 11里面两个>>不用分开了

int>

【在 x*****0 的大作中提到】
: bool myComparision1(vector x, vector y);
: vector > result;
: sort(result.begin(), result.end(), myComparision1);
: 用GCC4.6.1编译,在自己的电脑上没有问题。
: leetocde 一直给出如下错误:
: Line 77: no matching function for call to 'sort(std::vector
: >::iterator, std::vector >::iterator, : overloaded function type>)'

x*****0
发帖数: 452
4
谢啦~

【在 r*******e 的大作中提到】
: put myComparision1 out of the Solution namespace
:
: int>

1 (共1页)
进入JobHunting版参与讨论
相关主题
leetcode 的编译器是旧的还是新的?问一个C++函数Parameter的问题
C++ Singleton Template - 编译通不过VC++ does not support strlen()
请教struct inside class的问题(C++)C++ template question with friend ostream
[合集] C++ 里面 long 怎么 进行 bitwise AND调用win32 DLL的问题
Visual C++ 高手帮忙,一个Link Error[合集] 关于C++ Class Template编程一问
问个visual studio/编译的问题问一个windows下编译openGL code的问题
一个VC++ .net里编译C程序的问题c++ does not check const for extern variable?
相关话题的讨论汇总
话题: vector话题: int话题: sort话题: std