在某处阅读以下声明:
额外的哈希表可用于在最小堆中快速删除。
问题> 如何结合priority_queue
才能unordered_map
实现上面的想法?
#include <queue>
#include <unordered_map>
#include <iostream>
#include <list>
using namespace std;
struct Age
{
Age(int age) : m_age(age) {}
int m_age;
};
// Hash function for Age
class HashAge {
public:
const size_t operator()(const Age &a) const {
return hash<int>()(a.m_age);
}
};
struct AgeGreater
{
bool operator()(const Age& lhs, const Age& rhs) const {
return lhs.m_age < rhs.m_age;
}
};
int main()
{
priority_queue<Age, list<Age>, AgeGreater> min_heap; // doesn't work
//priority_queue<Age, vector<Age>, AgeGreater> min_heap;
// Is this the right way to do it?
unordered_map<Age, list<Age>::iterator, HashAge > hashTable;
}
问题> 我无法进行以下工作:
priority_queue<Age, list<Age>, AgeGreater> min_heap; // doesn't work
我必须使用列表作为容器 b/c 列表的迭代器不受插入/删除的影响(迭代器失效规则)