gpt4 book ai didi

c++ - 使用优先级队列分离链接(使用 std::map)

转载 作者:行者123 更新时间:2023-11-28 07:41:56 25 4
gpt4 key购买 nike

我刚开始学习哈希表,在尝试使用 std::map 时,我想到了这个问题:当使用单独的链接方法解决冲突时,我可以使用 std::priority_queue 而不是仅仅列表?

例如,有一大群人,我有他们的名字和年龄的信息,我想得到的是具有相同名字的人的排序列表,例如“大卫”基于他们的年龄。

所以为了做到这一点,我首先使用他们的名字作为键将这些人放入 map 中,然后应该根据年龄用 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) 搜索,所以我应该使用无序映射而不是映射。

最佳答案

现在您有一个名称和单个 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);

关于c++ - 使用优先级队列分离链接(使用 std::map),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15677956/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com