我刚开始学习哈希表,在尝试使用std :: map时,我想出了这个问题:当使用单独的链接方法来解决冲突时,我可以使用std:: priority_queue
而不仅仅是列表吗?
例如,有一大群人,我有他们的名字和年龄的信息,我想要得到的是具有相同名字的人的排序列表,例如“大卫”基于他们的年龄。
为了做到这一点,我首先使用他们的名字作为将这些人放入地图的关键,然后应该使用std :: priority_queue基于年龄来解决导致碰撞的同名人物。
这是解决此问题的正确方法吗?
我只是意识到我真的不知道std::map
背后的神秘面纱,它是使用单独的链接还是线性探测来解决碰撞?我找不到答案。
我所描述的问题的简单代码可能有助于澄清一点:
class people {
public:
people(string inName, int inAge):firstName(inName), age(inAge){};
private:
string firstName;
int age;
}
int main(int argc, char ** argv) {
string name;
int age;
name = "David";
age = 25;
people aPerson(name, age);
//This is just an example, there are usually more than two attributes to deal with.
std::map <string, people> peopleList;
peopleList[name] = aPerson;
//now how do I implement the priority queue for collision first names?
}
提前致谢!
编辑:因为我需要O(1)搜索,所以我应该使用无序地图而不是地图。
答案 0 :(得分:1)
现在,您可以在名称和单个people
对象之间建立映射。您需要将映射更改为名称和std::priority_queue
之间的映射,并为优先级队列设置自定义比较器:
auto comparator = [](const people& p1, const people& p2) -> bool
{ return (p1.age < p2.age); }
std::map<std::string,
std::priority_queue<people, std::vector<people>, comparator>> peopleList;
// ...
peopleList[name].push(aPerson);