我正在使用邻接列表和使用以下类型定义定义的映射:
typedef vector<list<Edge> > adjacencyList;
typedef map<int,WikiPage> idToWikiMap;
我想按名称对邻接列表(adjacencyList
)进行排序。 adjacencyList
的索引映射到我的地图中的一对。例如,
adjacencyList lst;
lst[0] = NULL
lst[1] = list of edges related to City1
lst[2] = list of edges related to City2
idToWikiMap mymap;
mymap[1] -> Name of City1
mymap[2] -> Name of City2
所以我想使用与邻接列表的索引相关的映射中的名称对邻接列表进行排序。我提出了以下代码。由于我的比较功能需要地图,我不能只创建一个正常的功能。所以我使用了struct
和Local
。
比较有效。我可以cout
当前正在比较的列表的名称和返回值。例如,我得到
Comparing Chicago and New York
Smaller: 0
Comparing Montreal and Chicago
Smaller: 1
Comparing Montreal and New York
Smaller: 0
Comparing Toronto and Chicago
Smaller: 1
Comparing Toronto and Montreal
Smaller: 1
Comparing Toronto and New York
Smaller: 1
Comparing Miami and Chicago
Smaller: 1
Comparing Miami and Montreal
Smaller: 0
然而,原件没有被修改......我做错了吗?
void printOrganized(adjacencyList& lst, idToWikiMap page_ofID) {
// Define compare functions that accepts idToWikiMap parameter
struct Local {
Local(idToWikiMap mymap) { this->mymap = mymap; }
bool operator() (const list<Edge>& l1, list<Edge>&l2)
{ return mymap.at(l1.front().origin).title < mymap.at(l2.front().origin).title; }
idToWikiMap mymap;
};
/* Sort adjacenyList lst */
sort (lst.begin()+1, lst.end(), Local(page_ofID));
...
}
答案 0 :(得分:1)
在修复编译错误后,您的代码对我很有用。也许您的编译器没有报告此错误,但它导致您的代码无法正常工作?
无论如何,错误在比较函数中 - 你应该将这两个参数作为const引用,即
bool operator() (const list<Edge>& l1, const list<Edge>& l2)
另外,我不得不将Local
移到全局范围,因为只要它在函数内部定义,它就不适用于我。您可以在此处查看工作结果:http://ideone.com/e.js/UPMeFm