开发者

problem with sort function in STL algorithm

开发者 https://www.devze.com 2022-12-19 05:05 出处:网络
I have written those few line: #include <vector> #include <algorithm> #include <stdlib.h>

I have written those few line:

#include <vector>
#include <algorithm>
#include <stdlib.h>
#include <time.h>
using namespace std;

template <class T> struct First
{
    T num;

    First() {}

    First(const T &a) : num(a) {}
};

 template <typename var> bool criterio(First<var> &primo, First<var> &secondo)
 {
    return (primo.num < secondo.num);
 }

int main()
 {
    vector< First<int> > f;

    srand (time(NULL));
    for(int i=0; i<20; i++) f.push_back( First<int>(rand() % 20) );

    sort(f.begin(),f.end(),criterio);

    return 0;
 }

I compile with "g++ program2.C" and the answer is:

program2.C: In function ‘int main()’:

program2.C:28: error: no ma开发者_运维百科tching function for call to‘sort(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > , __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, unresolved overloaded function type)’

I have no idea of what kind of problem it is... Can you help me??

thanks for help...


criterio is a template so you need to give the type it is templated on:

   sort(f.begin(),f.end(),criterio<int>)

and the criterio function must take const references as parameters:

 template <typename var> bool criterio(const First<var> &primo, 
                                         const First<var> &secondo)
  {
     return (primo.num < secondo.num);
  }


sort(f.begin(),f.end(),criterio<int>);

You need to explicitly state the function you're using.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号