0

我想std::map根据数据(第二个字段)对 a 进行排序。然而,第二个字段本身是一个结构,我想根据它的一个元素进行排序。根据这里的建议及其参考,决定将地图复制到矢量然后使用std::sort. 这是类实现

#include <iostream>
#include <vector>
#include <map>
#include <utility>

class foo() {
    foo() {}
    void bar()
    {
      aDeltaMap theDeltaMap;
      // insert some elements to theDeltaMap
      aDeltaVector theDeltaVec( theDeltaMap.begin(), theDeltaMap.end() );
      std::sort(theDeltaVec.begin(), theDeltaVec.end(), descend_rep<deltaPair>() );   //ERROR
    }
private:
    typedef struct entry {
      entry( int r, int mc ) : rep(r), missCounter(mc) {}
      int rep;
      int missCounter;
    } aDeltaEntry;

    typedef std::map< int, aDeltaEntry > aDeltaMap;
    typedef std::pair< int, aDeltaEntry > deltaPair;
    typedef std::vector< deltaPair > aDeltaVector;
    struct descend_rep
      : std::binary_function<deltaPair,deltaPair,bool>
      {
         inline bool operator()(const deltaPair& lhs, const deltaPair& rhs) { return lhs.second.rep > rhs.second.rep; };
      };
 };

在排序功能行,我收到此错误

 error C2275: illegal use of this type as an expression
 error C2059: syntax error : ')'

我错过了什么?

4

1 回答 1

1

一个错误是descent_rep不是类模板,所以你需要替换

descend_rep<deltaPair>()

经过

descend_rep()

您也应该 make ,因为比较它descend_repbool operator() const操作数不会改变它的状态。

于 2013-06-29T08:27:54.413 回答