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 matching 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...