我想创建一个比较函数对象,它可以帮助我对自定义数据结构的向量进行排序。由于我同时使用模板,因此我正在努力确定应该在哪里实现它以及所需的任何其他代码。下面的大部分代码都可以忽略。包含它是为了完整性,但比较函数对象在printSummary()
. 简而言之,如何实现比较函数对象?
#include<map>
#include<vector>
//#include<iostream>
#include<algorithm>
using namespace std;
template <class T>
class Record{
public:
T item;
int total;
};
template<class T>
bool compare(const Record<T> & a, const Record<T> & b){ //should a come before b?
if(a.total > b.total)
return true;
if(a.total < b.total)
return false;
if(a.total == b.total){
if(a.item < b.item)
return true;
else
return false;
}
}
template <class T>
class Counter{
public:
map<T, int> m;
void printSummary(){
typename map<T, int>::const_iterator itr;
vector< Record<T> > printlist;
Record<T> temp;
int i = 0;
for( itr = m.begin(); itr != m.end(); ++itr ){
temp.item = (*itr).first;
temp.total = (*itr).second;
printlist.push_back(temp);
i++;
}
sort(printlist.begin(), printlist.end(), compare);
//output sorted printlist contents
}
};