gpt4 book ai didi

c++ - 用于查找到元素集的 id 映射的良好数据结构 (c++)

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:51:24 25 4
gpt4 key购买 nike

没有提升,请只是简单的 STL。

我有一个类 Foo* 映射到一组类 ID 的指针。

我需要将指向 ID 实例的指针映射到 FOO 类。

说我有这个功能:

void FindXXX(const ID* pID)
{

/*find the containing FOO class quickly, but not at expense of an ugly code*/

}

现在我将每个 ID* 映射到 FOO* 从而得到类似的东西

map 我的 map ;我认为这有点丑陋和多余。

请推荐

最佳答案

right now I map each ID* to FOO* thus having something like that

map myMap; which I think is kind of ugly and redundant.

我假设你有这样的东西:

map<ID*, Foo*> myMap;

为什么会很丑?

关于c++ - 用于查找到元素集的 id 映射的良好数据结构 (c++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1034552/

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